Files
tubestation/dom/interfaces/base/moz.build
Makoto Kato f29f3efc8c Bug 1825910 - Re-implement OpenWindow on GeckoView. r=nika,geckoview-reviewers,owlish
Since we have a delegate API for service worker window, I re-implement
`OpenWindow` for GeckoView, not use `createContentWindow.createContenttWindow`
doesn't use service worker delegation.

Current implementation doesn't set `nsIOpenWindowInfo`` to create new
window. But we should attach it to set `OriginAttributes`, then we have to
wait for ready of browsing context.

Differential Revision: https://phabricator.services.mozilla.com/D190661
2024-11-27 01:42:44 +00:00

33 lines
1014 B
Python

# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# 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/.
with Files("**"):
BUG_COMPONENT = ("Core", "DOM: Core & HTML")
XPIDL_SOURCES += [
"domstubs.idl",
"nsIBrowser.idl",
"nsIBrowserChild.idl",
"nsIBrowserDOMWindow.idl",
"nsIBrowserUsage.idl",
"nsIContentPermissionPrompt.idl",
"nsIContentPrefService2.idl",
"nsIDOMGlobalPropertyInitializer.idl",
"nsIDOMWindow.idl",
"nsIDOMWindowUtils.idl",
"nsIFocusManager.idl",
"nsIGeckoViewServiceWorker.idl",
"nsIPermissionDelegateHandler.idl",
"nsIQueryContentEventResult.idl",
"nsIRemoteTab.idl",
"nsIServiceWorkerManager.idl",
"nsIStructuredCloneContainer.idl",
"nsITextInputProcessor.idl",
"nsITextInputProcessorCallback.idl",
]
XPIDL_MODULE = "dom_base"