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.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
michael@0 | 2 | * |
michael@0 | 3 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | * nsIWindowCreator is a callback interface used by Gecko to create |
michael@0 | 9 | * new browser windows. The application, either Mozilla or an embedding app, |
michael@0 | 10 | * must provide an implementation of the Window Watcher component and |
michael@0 | 11 | * notify the WindowWatcher during application initialization. |
michael@0 | 12 | * @see nsIWindowWatcher |
michael@0 | 13 | */ |
michael@0 | 14 | |
michael@0 | 15 | #include "nsISupports.idl" |
michael@0 | 16 | |
michael@0 | 17 | interface nsIWebBrowserChrome; |
michael@0 | 18 | |
michael@0 | 19 | [scriptable, uuid(30465632-A777-44cc-90F9-8145475EF999)] |
michael@0 | 20 | |
michael@0 | 21 | interface nsIWindowCreator : nsISupports { |
michael@0 | 22 | |
michael@0 | 23 | /** Create a new window. Gecko will/may call this method, if made |
michael@0 | 24 | available to it, to create new windows. |
michael@0 | 25 | @param parent parent window, if any. null if not. the newly created |
michael@0 | 26 | window should be made a child/dependent window of |
michael@0 | 27 | the parent, if any (and if the concept applies |
michael@0 | 28 | to the underlying OS). |
michael@0 | 29 | @param chromeFlags chrome features from nsIWebBrowserChrome |
michael@0 | 30 | @return the new window |
michael@0 | 31 | */ |
michael@0 | 32 | nsIWebBrowserChrome createChromeWindow(in nsIWebBrowserChrome parent, |
michael@0 | 33 | in uint32_t chromeFlags); |
michael@0 | 34 | }; |
michael@0 | 35 | |
michael@0 | 36 | %{C++ |
michael@0 | 37 | // {30465632-A777-44cc-90F9-8145475EF999} |
michael@0 | 38 | #define NS_WINDOWCREATOR_IID \ |
michael@0 | 39 | {0x30465632, 0xa777, 0x44cc, {0x90, 0xf9, 0x81, 0x45, 0x47, 0x5e, 0xf9, 0x99}} |
michael@0 | 40 | %} |
michael@0 | 41 |