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/. */
6 #include "nsISupports.idl"
7 #include "domstubs.idl"
9 /*
10 The nsPICommandUpdater interface is used by modules that implement
11 commands, to tell the command manager that commands need updating.
12 This is a private interface; embedders should not use it.
14 Command-implementing modules should get one of these by a QI
15 from an nsICommandManager.
16 */
18 [scriptable, uuid(B135F602-0BFE-11D5-A73C-F0E420E8293C)]
19 interface nsPICommandUpdater : nsISupports
20 {
22 /*
23 * Init the command updater, passing an nsIDOMWindow which
24 * is the window that the command updater lives on.
25 *
26 */
27 void init(in nsIDOMWindow aWindow);
29 /*
30 * Notify the command manager that the status of a command
31 * changed. It may have changed from enabled to disabled,
32 * or vice versa, or become toggled etc.
33 */
34 void commandStatusChanged(in string aCommandName);
36 };