2013-11-23 21:32:45 -08:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8; -*- */
|
2010-05-18 05:28:37 -07:00
|
|
|
/* vim: set sw=4 ts=8 et tw=80 : */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2010-05-18 05:28:37 -07:00
|
|
|
|
|
|
|
#include "nsInProcessTabChildGlobal.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsIScriptSecurityManager.h"
|
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIJSRuntimeService.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsScriptLoader.h"
|
|
|
|
#include "nsFrameLoader.h"
|
2011-01-14 14:03:21 -08:00
|
|
|
#include "xpcpublic.h"
|
2012-05-08 09:20:35 -07:00
|
|
|
#include "nsIMozBrowserFrame.h"
|
2012-07-20 09:42:08 -07:00
|
|
|
#include "nsDOMClassInfoID.h"
|
2014-03-17 21:48:21 -07:00
|
|
|
#include "mozilla/EventDispatcher.h"
|
2012-08-01 23:02:29 -07:00
|
|
|
#include "mozilla/dom/StructuredCloneUtils.h"
|
2013-09-23 14:30:40 -07:00
|
|
|
#include "js/StructuredClone.h"
|
2012-08-01 23:02:29 -07:00
|
|
|
|
|
|
|
using mozilla::dom::StructuredCloneData;
|
|
|
|
using mozilla::dom::StructuredCloneClosure;
|
2014-03-17 21:48:19 -07:00
|
|
|
using namespace mozilla;
|
2010-05-18 05:28:37 -07:00
|
|
|
|
2012-09-27 22:43:12 -07:00
|
|
|
bool
|
2013-10-01 09:15:06 -07:00
|
|
|
nsInProcessTabChildGlobal::DoSendBlockingMessage(JSContext* aCx,
|
|
|
|
const nsAString& aMessage,
|
2014-03-17 21:48:19 -07:00
|
|
|
const dom::StructuredCloneData& aData,
|
2013-10-01 09:15:06 -07:00
|
|
|
JS::Handle<JSObject *> aCpows,
|
2013-11-06 09:21:15 -08:00
|
|
|
nsIPrincipal* aPrincipal,
|
2013-10-01 09:15:06 -07:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal,
|
|
|
|
bool aIsSync)
|
2010-05-18 05:28:37 -07:00
|
|
|
{
|
2010-06-11 04:14:01 -07:00
|
|
|
nsTArray<nsCOMPtr<nsIRunnable> > asyncMessages;
|
2012-09-27 22:43:12 -07:00
|
|
|
asyncMessages.SwapElements(mASyncMessages);
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t len = asyncMessages.Length();
|
|
|
|
for (uint32_t i = 0; i < len; ++i) {
|
2010-06-11 04:14:01 -07:00
|
|
|
nsCOMPtr<nsIRunnable> async = asyncMessages[i];
|
2010-05-18 05:28:37 -07:00
|
|
|
async->Run();
|
|
|
|
}
|
2012-09-27 22:43:12 -07:00
|
|
|
if (mChromeMessageManager) {
|
2013-07-10 15:05:39 -07:00
|
|
|
SameProcessCpowHolder cpows(js::GetRuntime(aCx), aCpows);
|
2012-09-27 22:43:12 -07:00
|
|
|
nsRefPtr<nsFrameMessageManager> mm = mChromeMessageManager;
|
2013-11-06 09:21:15 -08:00
|
|
|
mm->ReceiveMessage(mOwner, aMessage, true, &aData, &cpows, aPrincipal,
|
|
|
|
aJSONRetVal);
|
2010-05-18 05:28:37 -07:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-12 07:22:00 -07:00
|
|
|
class nsAsyncMessageToParent : public nsSameProcessAsyncMessageBase,
|
|
|
|
public nsRunnable
|
2010-05-18 05:28:37 -07:00
|
|
|
{
|
|
|
|
public:
|
2013-07-10 15:05:39 -07:00
|
|
|
nsAsyncMessageToParent(JSContext* aCx,
|
|
|
|
nsInProcessTabChildGlobal* aTabChild,
|
2012-08-01 23:02:29 -07:00
|
|
|
const nsAString& aMessage,
|
2013-07-10 15:05:39 -07:00
|
|
|
const StructuredCloneData& aData,
|
2013-11-06 09:21:15 -08:00
|
|
|
JS::Handle<JSObject *> aCpows,
|
|
|
|
nsIPrincipal* aPrincipal)
|
2014-03-12 07:22:00 -07:00
|
|
|
: nsSameProcessAsyncMessageBase(aCx, aMessage, aData, aCpows, aPrincipal),
|
|
|
|
mTabChild(aTabChild), mRun(false)
|
2012-08-01 23:02:29 -07:00
|
|
|
{
|
2013-07-10 15:05:39 -07:00
|
|
|
}
|
|
|
|
|
2010-05-18 05:28:37 -07:00
|
|
|
NS_IMETHOD Run()
|
|
|
|
{
|
2012-12-18 09:08:03 -08:00
|
|
|
if (mRun) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
mRun = true;
|
2010-06-11 04:14:01 -07:00
|
|
|
mTabChild->mASyncMessages.RemoveElement(this);
|
2014-03-12 07:22:00 -07:00
|
|
|
ReceiveMessage(mTabChild->mOwner, mTabChild->mChromeMessageManager);
|
2010-05-18 05:28:37 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
nsRefPtr<nsInProcessTabChildGlobal> mTabChild;
|
2012-12-18 09:08:03 -08:00
|
|
|
// True if this runnable has already been called. This can happen if DoSendSyncMessage
|
|
|
|
// is called while waiting for an asynchronous message send.
|
|
|
|
bool mRun;
|
2010-05-18 05:28:37 -07:00
|
|
|
};
|
|
|
|
|
2012-09-27 22:43:12 -07:00
|
|
|
bool
|
2013-07-10 15:05:39 -07:00
|
|
|
nsInProcessTabChildGlobal::DoSendAsyncMessage(JSContext* aCx,
|
|
|
|
const nsAString& aMessage,
|
|
|
|
const StructuredCloneData& aData,
|
2013-11-06 09:21:15 -08:00
|
|
|
JS::Handle<JSObject *> aCpows,
|
|
|
|
nsIPrincipal* aPrincipal)
|
2010-05-18 05:28:37 -07:00
|
|
|
{
|
2010-06-11 04:14:01 -07:00
|
|
|
nsCOMPtr<nsIRunnable> ev =
|
2013-11-06 09:21:15 -08:00
|
|
|
new nsAsyncMessageToParent(aCx, this, aMessage, aData, aCpows, aPrincipal);
|
2012-09-27 22:43:12 -07:00
|
|
|
mASyncMessages.AppendElement(ev);
|
2010-05-18 05:28:37 -07:00
|
|
|
NS_DispatchToCurrentThread(ev);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsInProcessTabChildGlobal::nsInProcessTabChildGlobal(nsIDocShell* aShell,
|
|
|
|
nsIContent* aOwner,
|
|
|
|
nsFrameMessageManager* aChrome)
|
2011-10-17 07:59:28 -07:00
|
|
|
: mDocShell(aShell), mInitialized(false), mLoadingScript(false),
|
2014-04-18 16:00:06 -07:00
|
|
|
mOwner(aOwner), mChromeMessageManager(aChrome)
|
2010-05-18 05:28:37 -07:00
|
|
|
{
|
2014-10-07 02:44:48 -07:00
|
|
|
SetIsNotDOMBinding();
|
2014-06-13 10:56:38 -07:00
|
|
|
mozilla::HoldJSObjects(this);
|
2012-05-08 09:20:35 -07:00
|
|
|
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 10:32:37 -08:00
|
|
|
// If owner corresponds to an <iframe mozbrowser> or <iframe mozapp>, we'll
|
|
|
|
// have to tweak our PreHandleEvent implementation.
|
2012-05-08 09:20:35 -07:00
|
|
|
nsCOMPtr<nsIMozBrowserFrame> browserFrame = do_QueryInterface(mOwner);
|
|
|
|
if (browserFrame) {
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 10:32:37 -08:00
|
|
|
mIsBrowserOrAppFrame = browserFrame->GetReallyIsBrowserOrApp();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mIsBrowserOrAppFrame = false;
|
2012-05-08 09:20:35 -07:00
|
|
|
}
|
2010-05-18 05:28:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsInProcessTabChildGlobal::~nsInProcessTabChildGlobal()
|
|
|
|
{
|
2014-06-13 10:56:38 -07:00
|
|
|
mAnonymousGlobalScopes.Clear();
|
|
|
|
mozilla::DropJSObjects(this);
|
2010-05-18 05:28:37 -07:00
|
|
|
}
|
|
|
|
|
2012-08-09 01:33:38 -07:00
|
|
|
/* [notxpcom] boolean markForCC (); */
|
|
|
|
// This method isn't automatically forwarded safely because it's notxpcom, so
|
|
|
|
// the IDL binding doesn't know what value to return.
|
|
|
|
NS_IMETHODIMP_(bool)
|
|
|
|
nsInProcessTabChildGlobal::MarkForCC()
|
|
|
|
{
|
|
|
|
return mMessageManager ? mMessageManager->MarkForCC() : false;
|
|
|
|
}
|
|
|
|
|
2010-05-18 05:28:37 -07:00
|
|
|
nsresult
|
|
|
|
nsInProcessTabChildGlobal::Init()
|
|
|
|
{
|
2011-04-14 05:04:12 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
nsresult rv =
|
|
|
|
#endif
|
|
|
|
InitTabChildGlobal();
|
2010-05-18 05:28:37 -07:00
|
|
|
NS_WARN_IF_FALSE(NS_SUCCEEDED(rv),
|
|
|
|
"Couldn't initialize nsInProcessTabChildGlobal");
|
2012-09-27 22:43:12 -07:00
|
|
|
mMessageManager = new nsFrameMessageManager(this,
|
2012-07-30 07:20:58 -07:00
|
|
|
nullptr,
|
2014-03-17 21:48:19 -07:00
|
|
|
dom::ipc::MM_CHILD);
|
2010-05-18 05:28:37 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-06-13 10:56:38 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsInProcessTabChildGlobal)
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(nsInProcessTabChildGlobal,
|
|
|
|
DOMEventTargetHelper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mMessageManager)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mGlobal)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(nsInProcessTabChildGlobal,
|
|
|
|
DOMEventTargetHelper)
|
|
|
|
for (uint32_t i = 0; i < tmp->mAnonymousGlobalScopes.Length(); ++i) {
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mAnonymousGlobalScopes[i])
|
|
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(nsInProcessTabChildGlobal,
|
|
|
|
DOMEventTargetHelper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mMessageManager)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mGlobal)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mAnonymousGlobalScopes)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
2010-05-18 05:28:37 -07:00
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(nsInProcessTabChildGlobal)
|
2012-08-27 07:13:02 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIMessageListenerManager)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIMessageSender)
|
2010-08-31 11:58:35 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISyncMessageSender)
|
2010-05-18 05:28:37 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIContentFrameMessageManager)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIInProcessContentFrameMessageManager)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptObjectPrincipal)
|
2013-04-04 02:27:06 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIGlobalObject)
|
2013-04-04 02:27:40 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupportsWeakReference)
|
2010-05-18 05:28:37 -07:00
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(ContentFrameMessageManager)
|
2014-03-31 23:13:50 -07:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(DOMEventTargetHelper)
|
2010-05-18 05:28:37 -07:00
|
|
|
|
2014-03-31 23:13:50 -07:00
|
|
|
NS_IMPL_ADDREF_INHERITED(nsInProcessTabChildGlobal, DOMEventTargetHelper)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(nsInProcessTabChildGlobal, DOMEventTargetHelper)
|
2010-05-18 05:28:37 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsInProcessTabChildGlobal::GetContent(nsIDOMWindow** aContent)
|
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
*aContent = nullptr;
|
2014-01-09 18:03:47 -08:00
|
|
|
if (!mDocShell) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> window = mDocShell->GetWindow();
|
2010-05-18 05:28:37 -07:00
|
|
|
window.swap(*aContent);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsInProcessTabChildGlobal::GetDocShell(nsIDocShell** aDocShell)
|
|
|
|
{
|
|
|
|
NS_IF_ADDREF(*aDocShell = mDocShell);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-06-25 02:52:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsInProcessTabChildGlobal::Btoa(const nsAString& aBinaryData,
|
|
|
|
nsAString& aAsciiBase64String)
|
|
|
|
{
|
|
|
|
return nsContentUtils::Btoa(aBinaryData, aAsciiBase64String);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsInProcessTabChildGlobal::Atob(const nsAString& aAsciiString,
|
|
|
|
nsAString& aBinaryData)
|
|
|
|
{
|
|
|
|
return nsContentUtils::Atob(aAsciiString, aBinaryData);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-24 05:58:21 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsInProcessTabChildGlobal::PrivateNoteIntentionalCrash()
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2010-05-18 05:28:37 -07:00
|
|
|
void
|
|
|
|
nsInProcessTabChildGlobal::Disconnect()
|
|
|
|
{
|
2010-08-12 09:47:22 -07:00
|
|
|
// Let the frame scripts know the child is being closed. We do any other
|
|
|
|
// cleanup after the event has been fired. See DelayedDisconnect
|
|
|
|
nsContentUtils::AddScriptRunner(
|
|
|
|
NS_NewRunnableMethod(this, &nsInProcessTabChildGlobal::DelayedDisconnect)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsInProcessTabChildGlobal::DelayedDisconnect()
|
|
|
|
{
|
|
|
|
// Don't let the event escape
|
2012-07-30 07:20:58 -07:00
|
|
|
mOwner = nullptr;
|
2010-08-12 09:47:22 -07:00
|
|
|
|
|
|
|
// Fire the "unload" event
|
2014-03-31 23:13:50 -07:00
|
|
|
DOMEventTargetHelper::DispatchTrustedEvent(NS_LITERAL_STRING("unload"));
|
2010-08-12 09:47:22 -07:00
|
|
|
|
|
|
|
// Continue with the Disconnect cleanup
|
2014-01-09 18:03:47 -08:00
|
|
|
if (mDocShell) {
|
|
|
|
nsCOMPtr<nsPIDOMWindow> win = mDocShell->GetWindow();
|
|
|
|
if (win) {
|
|
|
|
MOZ_ASSERT(win->IsOuterWindow());
|
|
|
|
win->SetChromeEventHandler(win->GetChromeEventHandler());
|
|
|
|
}
|
2010-06-16 04:42:42 -07:00
|
|
|
}
|
2012-07-30 07:20:58 -07:00
|
|
|
mDocShell = nullptr;
|
|
|
|
mChromeMessageManager = nullptr;
|
2010-05-18 05:28:37 -07:00
|
|
|
if (mMessageManager) {
|
|
|
|
static_cast<nsFrameMessageManager*>(mMessageManager.get())->Disconnect();
|
2012-07-30 07:20:58 -07:00
|
|
|
mMessageManager = nullptr;
|
2010-05-18 05:28:37 -07:00
|
|
|
}
|
2010-08-23 01:44:43 -07:00
|
|
|
if (mListenerManager) {
|
|
|
|
mListenerManager->Disconnect();
|
|
|
|
}
|
2010-05-18 05:28:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(nsIContent *)
|
|
|
|
nsInProcessTabChildGlobal::GetOwnerContent()
|
|
|
|
{
|
|
|
|
return mOwner;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-17 21:48:19 -07:00
|
|
|
nsInProcessTabChildGlobal::PreHandleEvent(EventChainPreVisitor& aVisitor)
|
2010-05-18 05:28:37 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
aVisitor.mCanHandle = true;
|
2012-05-08 09:20:35 -07:00
|
|
|
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 10:32:37 -08:00
|
|
|
if (mIsBrowserOrAppFrame &&
|
2012-06-20 12:25:23 -07:00
|
|
|
(!mOwner || !nsContentUtils::IsInChromeDocshell(mOwner->OwnerDoc()))) {
|
2012-05-08 09:20:35 -07:00
|
|
|
if (mOwner) {
|
|
|
|
nsPIDOMWindow* innerWindow = mOwner->OwnerDoc()->GetInnerWindow();
|
|
|
|
if (innerWindow) {
|
|
|
|
aVisitor.mParentTarget = innerWindow->GetParentTarget();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
aVisitor.mParentTarget = mOwner;
|
|
|
|
}
|
2010-05-18 05:28:37 -07:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (mOwner) {
|
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> owner = do_QueryInterface(mOwner);
|
|
|
|
nsRefPtr<nsFrameLoader> fl = owner->GetFrameLoader();
|
|
|
|
if (fl) {
|
|
|
|
NS_ASSERTION(this == fl->GetTabChildGlobalAsEventTarget(),
|
|
|
|
"Wrong event target!");
|
|
|
|
NS_ASSERTION(fl->mMessageManager == mChromeMessageManager,
|
|
|
|
"Wrong message manager!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsInProcessTabChildGlobal::InitTabChildGlobal()
|
|
|
|
{
|
2014-09-24 19:08:20 -07:00
|
|
|
// If you change this, please change GetCompartmentName() in XPCJSRuntime.cpp
|
|
|
|
// accordingly.
|
2013-02-20 02:39:59 -08:00
|
|
|
nsAutoCString id;
|
|
|
|
id.AssignLiteral("inProcessTabChildGlobal");
|
|
|
|
nsIURI* uri = mOwner->OwnerDoc()->GetDocumentURI();
|
|
|
|
if (uri) {
|
|
|
|
nsAutoCString u;
|
|
|
|
uri->GetSpec(u);
|
|
|
|
id.AppendLiteral("?ownedBy=");
|
|
|
|
id.Append(u);
|
|
|
|
}
|
2013-04-19 15:18:33 -07:00
|
|
|
nsISupports* scopeSupports = NS_ISUPPORTS_CAST(EventTarget*, this);
|
2013-02-20 02:39:59 -08:00
|
|
|
NS_ENSURE_STATE(InitTabChildGlobalInternal(scopeSupports, id));
|
2010-05-18 05:28:37 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-05-19 07:48:17 -07:00
|
|
|
class nsAsyncScriptLoad : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
2013-11-23 21:32:45 -08:00
|
|
|
nsAsyncScriptLoad(nsInProcessTabChildGlobal* aTabChild, const nsAString& aURL,
|
|
|
|
bool aRunInGlobalScope)
|
|
|
|
: mTabChild(aTabChild), mURL(aURL), mRunInGlobalScope(aRunInGlobalScope) {}
|
2011-05-19 07:48:17 -07:00
|
|
|
|
|
|
|
NS_IMETHOD Run()
|
|
|
|
{
|
2013-11-23 21:32:45 -08:00
|
|
|
mTabChild->LoadFrameScript(mURL, mRunInGlobalScope);
|
2011-05-19 07:48:17 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
nsRefPtr<nsInProcessTabChildGlobal> mTabChild;
|
|
|
|
nsString mURL;
|
2013-11-23 21:32:45 -08:00
|
|
|
bool mRunInGlobalScope;
|
2011-05-19 07:48:17 -07:00
|
|
|
};
|
|
|
|
|
2010-05-18 05:28:37 -07:00
|
|
|
void
|
2013-11-23 21:32:45 -08:00
|
|
|
nsInProcessTabChildGlobal::LoadFrameScript(const nsAString& aURL, bool aRunInGlobalScope)
|
2010-05-18 05:28:37 -07:00
|
|
|
{
|
2011-05-19 07:48:17 -07:00
|
|
|
if (!nsContentUtils::IsSafeToRunScript()) {
|
2013-11-23 21:32:45 -08:00
|
|
|
nsContentUtils::AddScriptRunner(new nsAsyncScriptLoad(this, aURL, aRunInGlobalScope));
|
2011-05-19 07:48:17 -07:00
|
|
|
return;
|
|
|
|
}
|
2010-05-18 05:28:37 -07:00
|
|
|
if (!mInitialized) {
|
2011-10-17 07:59:28 -07:00
|
|
|
mInitialized = true;
|
2010-05-18 05:28:37 -07:00
|
|
|
Init();
|
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
bool tmp = mLoadingScript;
|
2011-10-17 07:59:28 -07:00
|
|
|
mLoadingScript = true;
|
2013-11-23 21:32:45 -08:00
|
|
|
LoadFrameScriptInternal(aURL, aRunInGlobalScope);
|
2010-08-10 10:18:26 -07:00
|
|
|
mLoadingScript = tmp;
|
2010-05-18 05:28:37 -07:00
|
|
|
}
|