Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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 };