forked from mirrors/gecko-dev
The attributes for an interface should be on the line right before the interface. Interface attributes should be separated by spaces. Clean up some trailing whitespace in widget/. Differential Revision: https://phabricator.services.mozilla.com/D28234 --HG-- extra : moz-landing-system : lando
27 lines
922 B
Text
27 lines
922 B
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
interface mozIDOMWindow;
|
|
webidl Document;
|
|
webidl WebExtensionContentScript;
|
|
|
|
[scriptable, uuid(6b09dc51-6caa-4ca7-9d6d-30c87258a630)]
|
|
interface mozIExtensionProcessScript : nsISupports
|
|
{
|
|
void preloadContentScript(in nsISupports contentScript);
|
|
|
|
Promise loadContentScript(in WebExtensionContentScript contentScript,
|
|
in mozIDOMWindow window);
|
|
|
|
void initExtensionDocument(in nsISupports extension, in Document doc,
|
|
in bool privileged);
|
|
};
|
|
|
|
[scriptable, uuid(9f2a6434-f0ef-4063-ae33-368d929805d2)]
|
|
interface mozIExtensionProcessScriptJSM : nsISupports
|
|
{
|
|
readonly attribute mozIExtensionProcessScript ExtensionProcessScript;
|
|
};
|