Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #ifndef nsCommandGroup_h__
9 #define nsCommandGroup_h__
11 #include "nsIController.h"
13 #include "nsHashtable.h"
16 // {ecd55a01-2780-11d5-a73c-ca641a6813bc}
17 #define NS_CONTROLLER_COMMAND_GROUP_CID \
18 { 0xecd55a01, 0x2780, 0x11d5, { 0xa7, 0x3c, 0xca, 0x64, 0x1a, 0x68, 0x13, 0xbc } }
20 #define NS_CONTROLLER_COMMAND_GROUP_CONTRACTID \
21 "@mozilla.org/embedcomp/controller-command-group;1"
24 class nsControllerCommandGroup : public nsIControllerCommandGroup
25 {
26 public:
28 nsControllerCommandGroup();
29 virtual ~nsControllerCommandGroup();
31 NS_DECL_ISUPPORTS
32 NS_DECL_NSICONTROLLERCOMMANDGROUP
35 protected:
37 void ClearGroupsHash();
39 protected:
41 static bool ClearEnumerator(nsHashKey *aKey, void *aData, void* closure);
43 protected:
45 nsHashtable mGroupsHash; // hash keyed on command group.
46 // Entries are nsTArray<char*>
47 // This could be made more space-efficient, maybe with atoms
49 };
52 #endif // nsCommandGroup_h__