1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5#include "nsITaskbarProgress.idl"
6
7interface mozIDOMWindowProxy;
8
9/**
10 * Allow the TaskbarProgress instance to set a new target window.
11 */
12
13[scriptable, uuid(39f6fc5a-2386-4bc6-941c-d7479253bc3f)]
14interface nsIGtkTaskbarProgress : nsITaskbarProgress
15{
16  /**
17   * Sets the window that is considered primary for purposes of
18   * setting the XApp progress property.
19   */
20
21  void setPrimaryWindow(in mozIDOMWindowProxy aWindow);
22};
23