/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8; -*- */ /* vim: set sw=2 ts=8 et tw=80 : */ /* 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 "base/basictypes.h" #include "TabParent.h" #include "Blob.h" #include "IDBFactory.h" #include "IndexedDBParent.h" #include "mozilla/BrowserElementParent.h" #include "mozilla/docshell/OfflineCacheUpdateParent.h" #include "mozilla/dom/ContentParent.h" #include "mozilla/ipc/DocumentRendererParent.h" #include "mozilla/layers/CompositorParent.h" #include "mozilla/layout/RenderFrameParent.h" #include "mozilla/Preferences.h" #include "mozilla/unused.h" #include "nsCOMPtr.h" #include "nsContentPermissionHelper.h" #include "nsContentUtils.h" #include "nsDebug.h" #include "nsEventDispatcher.h" #include "nsFocusManager.h" #include "nsFrameLoader.h" #include "nsIContent.h" #include "nsIDOMElement.h" #include "nsIDOMEvent.h" #include "nsIDOMEventTarget.h" #include "nsIDOMHTMLFrameElement.h" #include "nsIDOMWindow.h" #include "nsIDialogCreator.h" #include "nsIPromptFactory.h" #include "nsIURI.h" #include "nsIMozBrowserFrame.h" #include "nsIViewManager.h" #include "nsIWidget.h" #include "nsIWindowWatcher.h" #include "nsNetUtil.h" #include "nsPIDOMWindow.h" #include "nsPrintfCString.h" #include "nsSerializationHelper.h" #include "nsServiceManagerUtils.h" #include "nsThreadUtils.h" #include "StructuredCloneUtils.h" #include "TabChild.h" using namespace mozilla::dom; using namespace mozilla::ipc; using namespace mozilla::layers; using namespace mozilla::layout; using namespace mozilla::widget; using namespace mozilla::dom::indexedDB; // The flags passed by the webProgress notifications are 16 bits shifted // from the ones registered by webProgressListeners. #define NOTIFY_FLAG_SHIFT 16 namespace mozilla { namespace dom { TabParent *TabParent::mIMETabParent = nullptr; NS_IMPL_ISUPPORTS3(TabParent, nsITabParent, nsIAuthPromptProvider, nsISecureBrowserUI) TabParent::TabParent() : mFrameElement(NULL) , mIMESelectionAnchor(0) , mIMESelectionFocus(0) , mIMEComposing(false) , mIMECompositionEnding(false) , mIMECompositionStart(0) , mIMESeqno(0) , mDPI(0) , mActive(false) , mShown(false) { } TabParent::~TabParent() { } void TabParent::SetOwnerElement(nsIDOMElement* aElement) { mFrameElement = aElement; TryCacheDPI(); } void TabParent::Destroy() { // If this fails, it's most likely due to a content-process crash, // and auto-cleanup will kick in. Otherwise, the child side will // destroy itself and send back __delete__(). unused << SendDestroy(); if (RenderFrameParent* frame = GetRenderFrame()) { frame->Destroy(); } } bool TabParent::Recv__delete__() { ContentParent* cp = static_cast(Manager()); cp->NotifyTabDestroyed(this); return true; } void TabParent::ActorDestroy(ActorDestroyReason why) { if (mIMETabParent == this) mIMETabParent = nullptr; nsRefPtr frameLoader = GetFrameLoader(); if (frameLoader) { frameLoader->DestroyChild(); if (why == AbnormalShutdown) { nsCOMPtr os = services::GetObserverService(); if (os) { os->NotifyObservers(NS_ISUPPORTS_CAST(nsIFrameLoader*, frameLoader), "oop-frameloader-crashed", nullptr); } } } } bool TabParent::RecvMoveFocus(const bool& aForward) { nsCOMPtr fm = do_GetService(FOCUSMANAGER_CONTRACTID); if (fm) { nsCOMPtr dummy; PRUint32 type = aForward ? PRUint32(nsIFocusManager::MOVEFOCUS_FORWARD) : PRUint32(nsIFocusManager::MOVEFOCUS_BACKWARD); fm->MoveFocus(nullptr, mFrameElement, type, nsIFocusManager::FLAG_BYKEY, getter_AddRefs(dummy)); } return true; } bool TabParent::RecvEvent(const RemoteDOMEvent& aEvent) { nsCOMPtr event = do_QueryInterface(aEvent.mEvent); NS_ENSURE_TRUE(event, true); nsCOMPtr target = do_QueryInterface(mFrameElement); NS_ENSURE_TRUE(target, true); bool dummy; target->DispatchEvent(event, &dummy); return true; } bool TabParent::AnswerCreateWindow(PBrowserParent** retval) { if (!mBrowserDOMWindow) { return false; } // Get a new rendering area from the browserDOMWin. We don't want // to be starting any loads here, so get it with a null URI. nsCOMPtr frameLoaderOwner; mBrowserDOMWindow->OpenURIInFrame(nullptr, nullptr, nsIBrowserDOMWindow::OPEN_NEWTAB, nsIBrowserDOMWindow::OPEN_NEW, getter_AddRefs(frameLoaderOwner)); if (!frameLoaderOwner) { return false; } nsRefPtr frameLoader = frameLoaderOwner->GetFrameLoader(); if (!frameLoader) { return false; } *retval = frameLoader->GetRemoteBrowser(); return true; } void TabParent::LoadURL(nsIURI* aURI) { if (!mShown) { nsCAutoString spec; if (aURI) { aURI->GetSpec(spec); } NS_WARNING(nsPrintfCString("TabParent::LoadURL(%s) called before " "Show(). Ignoring LoadURL.\n", spec.get()).get()); return; } nsCString spec; aURI->GetSpec(spec); unused << SendLoadURL(spec); } void TabParent::Show(const nsIntSize& size) { // sigh mShown = true; unused << SendShow(size); } void TabParent::UpdateDimensions(const nsRect& rect, const nsIntSize& size) { unused << SendUpdateDimensions(rect, size); if (RenderFrameParent* rfp = GetRenderFrame()) { rfp->NotifyDimensionsChanged(size.width, size.height); } } void TabParent::UpdateFrame(const FrameMetrics& aFrameMetrics) { unused << SendUpdateFrame(aFrameMetrics.mDisplayPort, aFrameMetrics.mViewportScrollOffset, aFrameMetrics.mResolution, aFrameMetrics.mViewport); } void TabParent::Activate() { mActive = true; unused << SendActivate(); } void TabParent::Deactivate() { mActive = false; unused << SendDeactivate(); } bool TabParent::Active() { return mActive; } NS_IMETHODIMP TabParent::Init(nsIDOMWindow *window) { return NS_OK; } NS_IMETHODIMP TabParent::GetState(PRUint32 *aState) { NS_ENSURE_ARG(aState); NS_WARNING("SecurityState not valid here"); *aState = 0; return NS_OK; } NS_IMETHODIMP TabParent::GetTooltipText(nsAString & aTooltipText) { aTooltipText.Truncate(); return NS_OK; } PDocumentRendererParent* TabParent::AllocPDocumentRenderer(const nsRect& documentRect, const gfxMatrix& transform, const nsString& bgcolor, const PRUint32& renderFlags, const bool& flushLayout, const nsIntSize& renderSize) { return new DocumentRendererParent(); } bool TabParent::DeallocPDocumentRenderer(PDocumentRendererParent* actor) { delete actor; return true; } PContentPermissionRequestParent* TabParent::AllocPContentPermissionRequest(const nsCString& type, const IPC::URI& uri) { return new ContentPermissionRequestParent(type, mFrameElement, uri); } bool TabParent::DeallocPContentPermissionRequest(PContentPermissionRequestParent* actor) { delete actor; return true; } void TabParent::SendMouseEvent(const nsAString& aType, float aX, float aY, PRInt32 aButton, PRInt32 aClickCount, PRInt32 aModifiers, bool aIgnoreRootScrollFrame) { unused << PBrowserParent::SendMouseEvent(nsString(aType), aX, aY, aButton, aClickCount, aModifiers, aIgnoreRootScrollFrame); } void TabParent::SendKeyEvent(const nsAString& aType, PRInt32 aKeyCode, PRInt32 aCharCode, PRInt32 aModifiers, bool aPreventDefault) { unused << PBrowserParent::SendKeyEvent(nsString(aType), aKeyCode, aCharCode, aModifiers, aPreventDefault); } bool TabParent::SendRealMouseEvent(nsMouseEvent& event) { nsMouseEvent e(event); MaybeForwardEventToRenderFrame(event, &e); return PBrowserParent::SendRealMouseEvent(e); } bool TabParent::SendMouseScrollEvent(nsMouseScrollEvent& event) { nsMouseScrollEvent e(event); MaybeForwardEventToRenderFrame(event, &e); return PBrowserParent::SendMouseScrollEvent(e); } bool TabParent::SendRealKeyEvent(nsKeyEvent& event) { nsKeyEvent e(event); MaybeForwardEventToRenderFrame(event, &e); return PBrowserParent::SendRealKeyEvent(e); } bool TabParent::SendRealTouchEvent(nsTouchEvent& event) { nsTouchEvent e(event); MaybeForwardEventToRenderFrame(event, &e); return PBrowserParent::SendRealTouchEvent(e); } bool TabParent::RecvSyncMessage(const nsString& aMessage, const ClonedMessageData& aData, InfallibleTArray* aJSONRetVal) { const SerializedStructuredCloneBuffer& buffer = aData.data(); const InfallibleTArray& blobParents = aData.blobsParent(); StructuredCloneData cloneData; cloneData.mData = buffer.data; cloneData.mDataLength = buffer.dataLength; if (!blobParents.IsEmpty()) { PRUint32 length = blobParents.Length(); cloneData.mClosure.mBlobs.SetCapacity(length); for (PRUint32 i = 0; i < length; ++i) { BlobParent* blobParent = static_cast(blobParents[i]); MOZ_ASSERT(blobParent); nsCOMPtr blob = blobParent->GetBlob(); MOZ_ASSERT(blob); cloneData.mClosure.mBlobs.AppendElement(blob); } } return ReceiveMessage(aMessage, true, &cloneData, aJSONRetVal); } bool TabParent::RecvAsyncMessage(const nsString& aMessage, const ClonedMessageData& aData) { const SerializedStructuredCloneBuffer& buffer = aData.data(); const InfallibleTArray& blobParents = aData.blobsParent(); StructuredCloneData cloneData; cloneData.mData = buffer.data; cloneData.mDataLength = buffer.dataLength; if (!blobParents.IsEmpty()) { PRUint32 length = blobParents.Length(); cloneData.mClosure.mBlobs.SetCapacity(length); for (PRUint32 i = 0; i < length; ++i) { BlobParent* blobParent = static_cast(blobParents[i]); MOZ_ASSERT(blobParent); nsCOMPtr blob = blobParent->GetBlob(); MOZ_ASSERT(blob); cloneData.mClosure.mBlobs.AppendElement(blob); } } return ReceiveMessage(aMessage, false, &cloneData, nullptr); } bool TabParent::RecvSetCursor(const PRUint32& aCursor) { nsCOMPtr widget = GetWidget(); if (widget) { widget->SetCursor((nsCursor) aCursor); } return true; } bool TabParent::RecvSetBackgroundColor(const nscolor& aColor) { if (RenderFrameParent* frame = GetRenderFrame()) { frame->SetBackgroundColor(aColor); } return true; } bool TabParent::RecvNotifyIMEFocus(const bool& aFocus, nsIMEUpdatePreference* aPreference, PRUint32* aSeqno) { nsCOMPtr widget = GetWidget(); if (!widget) return true; *aSeqno = mIMESeqno; mIMETabParent = aFocus ? this : nullptr; mIMESelectionAnchor = 0; mIMESelectionFocus = 0; nsresult rv = widget->OnIMEFocusChange(aFocus); if (aFocus) { if (NS_SUCCEEDED(rv) && rv != NS_SUCCESS_IME_NO_UPDATES) { *aPreference = widget->GetIMEUpdatePreference(); } else { aPreference->mWantUpdates = false; aPreference->mWantHints = false; } } else { mIMECacheText.Truncate(0); } return true; } bool TabParent::RecvNotifyIMETextChange(const PRUint32& aStart, const PRUint32& aEnd, const PRUint32& aNewEnd) { nsCOMPtr widget = GetWidget(); if (!widget) return true; widget->OnIMETextChange(aStart, aEnd, aNewEnd); return true; } bool TabParent::RecvNotifyIMESelection(const PRUint32& aSeqno, const PRUint32& aAnchor, const PRUint32& aFocus) { nsCOMPtr widget = GetWidget(); if (!widget) return true; if (aSeqno == mIMESeqno) { mIMESelectionAnchor = aAnchor; mIMESelectionFocus = aFocus; widget->OnIMESelectionChange(); } return true; } bool TabParent::RecvNotifyIMETextHint(const nsString& aText) { // Replace our cache with new text mIMECacheText = aText; return true; } /** * Try to answer query event using cached text. * * For NS_QUERY_SELECTED_TEXT, fail if the cache doesn't contain the whole * selected range. (This shouldn't happen because PuppetWidget should have * already sent the whole selection.) * * For NS_QUERY_TEXT_CONTENT, fail only if the cache doesn't overlap with * the queried range. Note the difference from above. We use * this behavior because a normal NS_QUERY_TEXT_CONTENT event is allowed to * have out-of-bounds offsets, so that widget can request content without * knowing the exact length of text. It's up to widget to handle cases when * the returned offset/length are different from the queried offset/length. */ bool TabParent::HandleQueryContentEvent(nsQueryContentEvent& aEvent) { aEvent.mSucceeded = false; aEvent.mWasAsync = false; aEvent.mReply.mFocusedWidget = nsCOMPtr(GetWidget()).get(); switch (aEvent.message) { case NS_QUERY_SELECTED_TEXT: { aEvent.mReply.mOffset = NS_MIN(mIMESelectionAnchor, mIMESelectionFocus); if (mIMESelectionAnchor == mIMESelectionFocus) { aEvent.mReply.mString.Truncate(0); } else { if (mIMESelectionAnchor > mIMECacheText.Length() || mIMESelectionFocus > mIMECacheText.Length()) { break; } PRUint32 selLen = mIMESelectionAnchor > mIMESelectionFocus ? mIMESelectionAnchor - mIMESelectionFocus : mIMESelectionFocus - mIMESelectionAnchor; aEvent.mReply.mString = Substring(mIMECacheText, aEvent.mReply.mOffset, selLen); } aEvent.mReply.mReversed = mIMESelectionFocus < mIMESelectionAnchor; aEvent.mReply.mHasSelection = true; aEvent.mSucceeded = true; } break; case NS_QUERY_TEXT_CONTENT: { PRUint32 inputOffset = aEvent.mInput.mOffset, inputEnd = inputOffset + aEvent.mInput.mLength; if (inputEnd > mIMECacheText.Length()) { inputEnd = mIMECacheText.Length(); } if (inputEnd < inputOffset) { break; } aEvent.mReply.mOffset = inputOffset; aEvent.mReply.mString = Substring(mIMECacheText, inputOffset, inputEnd - inputOffset); aEvent.mSucceeded = true; } break; } return true; } bool TabParent::SendCompositionEvent(nsCompositionEvent& event) { mIMEComposing = event.message != NS_COMPOSITION_END; mIMECompositionStart = NS_MIN(mIMESelectionAnchor, mIMESelectionFocus); if (mIMECompositionEnding) return true; event.seqno = ++mIMESeqno; return PBrowserParent::SendCompositionEvent(event); } /** * During ResetInputState or CancelComposition, widget usually sends a * NS_TEXT_TEXT event to finalize or clear the composition, respectively * * Because the event will not reach content in time, we intercept it * here and pass the text as the EndIMEComposition return value */ bool TabParent::SendTextEvent(nsTextEvent& event) { if (mIMECompositionEnding) { mIMECompositionText = event.theText; return true; } // We must be able to simulate the selection because // we might not receive selection updates in time if (!mIMEComposing) { mIMECompositionStart = NS_MIN(mIMESelectionAnchor, mIMESelectionFocus); } mIMESelectionAnchor = mIMESelectionFocus = mIMECompositionStart + event.theText.Length(); event.seqno = ++mIMESeqno; return PBrowserParent::SendTextEvent(event); } bool TabParent::SendSelectionEvent(nsSelectionEvent& event) { mIMESelectionAnchor = event.mOffset + (event.mReversed ? event.mLength : 0); mIMESelectionFocus = event.mOffset + (!event.mReversed ? event.mLength : 0); event.seqno = ++mIMESeqno; return PBrowserParent::SendSelectionEvent(event); } /*static*/ TabParent* TabParent::GetFrom(nsFrameLoader* aFrameLoader) { if (!aFrameLoader) { return nullptr; } PBrowserParent* remoteBrowser = aFrameLoader->GetRemoteBrowser(); return static_cast(remoteBrowser); } /*static*/ TabParent* TabParent::GetFrom(nsIContent* aContent) { nsCOMPtr loaderOwner = do_QueryInterface(aContent); if (!loaderOwner) { return nullptr; } nsRefPtr frameLoader = loaderOwner->GetFrameLoader(); return GetFrom(frameLoader); } RenderFrameParent* TabParent::GetRenderFrame() { if (ManagedPRenderFrameParent().IsEmpty()) { return nullptr; } return static_cast(ManagedPRenderFrameParent()[0]); } bool TabParent::RecvEndIMEComposition(const bool& aCancel, nsString* aComposition) { nsCOMPtr widget = GetWidget(); if (!widget) return true; mIMECompositionEnding = true; if (aCancel) { widget->CancelIMEComposition(); } else { widget->ResetInputState(); } mIMECompositionEnding = false; *aComposition = mIMECompositionText; mIMECompositionText.Truncate(0); return true; } bool TabParent::RecvGetInputContext(PRInt32* aIMEEnabled, PRInt32* aIMEOpen) { nsCOMPtr widget = GetWidget(); if (!widget) { *aIMEEnabled = IMEState::DISABLED; *aIMEOpen = IMEState::OPEN_STATE_NOT_SUPPORTED; return true; } InputContext context = widget->GetInputContext(); *aIMEEnabled = static_cast(context.mIMEState.mEnabled); *aIMEOpen = static_cast(context.mIMEState.mOpen); return true; } bool TabParent::RecvSetInputContext(const PRInt32& aIMEEnabled, const PRInt32& aIMEOpen, const nsString& aType, const nsString& aActionHint, const PRInt32& aCause, const PRInt32& aFocusChange) { // mIMETabParent (which is actually static) tracks which if any TabParent has IMEFocus // When the input mode is set to anything but IMEState::DISABLED, // mIMETabParent should be set to this mIMETabParent = aIMEEnabled != static_cast(IMEState::DISABLED) ? this : nullptr; nsCOMPtr widget = GetWidget(); if (!widget || !AllowContentIME()) return true; InputContext context; context.mIMEState.mEnabled = static_cast(aIMEEnabled); context.mIMEState.mOpen = static_cast(aIMEOpen); context.mHTMLInputType.Assign(aType); context.mActionHint.Assign(aActionHint); InputContextAction action( static_cast(aCause), static_cast(aFocusChange)); widget->SetInputContext(context, action); nsCOMPtr observerService = mozilla::services::GetObserverService(); if (!observerService) return true; nsAutoString state; state.AppendInt(aIMEEnabled); observerService->NotifyObservers(nullptr, "ime-enabled-state-changed", state.get()); return true; } bool TabParent::RecvGetDPI(float* aValue) { TryCacheDPI(); NS_ABORT_IF_FALSE(mDPI > 0, "Must not ask for DPI before OwnerElement is received!"); *aValue = mDPI; return true; } bool TabParent::RecvGetWidgetNativeData(WindowsHandle* aValue) { nsCOMPtr content = do_QueryInterface(mFrameElement); if (content) { nsIPresShell* shell = content->OwnerDoc()->GetShell(); if (shell) { nsIViewManager* vm = shell->GetViewManager(); nsCOMPtr widget; vm->GetRootWidget(getter_AddRefs(widget)); if (widget) { *aValue = reinterpret_cast( widget->GetNativeData(NS_NATIVE_SHAREABLE_WINDOW)); return true; } } } return false; } bool TabParent::ReceiveMessage(const nsString& aMessage, bool aSync, const StructuredCloneData* aCloneData, InfallibleTArray* aJSONRetVal) { nsRefPtr frameLoader = GetFrameLoader(); if (frameLoader && frameLoader->GetFrameMessageManager()) { nsRefPtr manager = frameLoader->GetFrameMessageManager(); JSContext* ctx = manager->GetJSContext(); JSAutoRequest ar(ctx); PRUint32 len = 0; //TODO: obtain a real value in bug 572685 // Because we want JS messages to have always the same properties, // create array even if len == 0. JSObject* objectsArray = JS_NewArrayObject(ctx, len, NULL); if (!objectsArray) { return false; } manager->ReceiveMessage(mFrameElement, aMessage, aSync, aCloneData, objectsArray, aJSONRetVal); } return true; } PIndexedDBParent* TabParent::AllocPIndexedDB(const nsCString& aASCIIOrigin, bool* /* aAllowed */) { return new IndexedDBParent(); } bool TabParent::DeallocPIndexedDB(PIndexedDBParent* aActor) { delete aActor; return true; } bool TabParent::RecvPIndexedDBConstructor(PIndexedDBParent* aActor, const nsCString& aASCIIOrigin, bool* aAllowed) { nsRefPtr mgr = IndexedDatabaseManager::GetOrCreate(); NS_ENSURE_TRUE(mgr, false); if (!IndexedDatabaseManager::IsMainProcess()) { NS_RUNTIMEABORT("Not supported yet!"); } nsCOMPtr node = do_QueryInterface(GetOwnerElement()); NS_ENSURE_TRUE(node, false); nsIDocument* doc = node->GetOwnerDocument(); NS_ENSURE_TRUE(doc, false); nsCOMPtr window = doc->GetInnerWindow(); NS_ENSURE_TRUE(window, false); ContentParent* contentParent = static_cast(Manager()); NS_ASSERTION(contentParent, "Null manager?!"); nsRefPtr factory; nsresult rv = IDBFactory::Create(window, aASCIIOrigin, contentParent, getter_AddRefs(factory)); NS_ENSURE_SUCCESS(rv, false); if (!factory) { *aAllowed = false; return true; } IndexedDBParent* actor = static_cast(aActor); actor->mFactory = factory; actor->mASCIIOrigin = aASCIIOrigin; *aAllowed = true; return true; } // nsIAuthPromptProvider // This method is largely copied from nsDocShell::GetAuthPrompt NS_IMETHODIMP TabParent::GetAuthPrompt(PRUint32 aPromptReason, const nsIID& iid, void** aResult) { // we're either allowing auth, or it's a proxy request nsresult rv; nsCOMPtr wwatch = do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr window; nsCOMPtr frame = do_QueryInterface(mFrameElement); if (frame) window = do_QueryInterface(frame->OwnerDoc()->GetWindow()); // Get an auth prompter for our window so that the parenting // of the dialogs works as it should when using tabs. return wwatch->GetPrompt(window, iid, reinterpret_cast(aResult)); } PContentDialogParent* TabParent::AllocPContentDialog(const PRUint32& aType, const nsCString& aName, const nsCString& aFeatures, const InfallibleTArray& aIntParams, const InfallibleTArray& aStringParams) { ContentDialogParent* parent = new ContentDialogParent(); nsCOMPtr params = do_CreateInstance(NS_DIALOGPARAMBLOCK_CONTRACTID); TabChild::ArraysToParams(aIntParams, aStringParams, params); mDelayedDialogs.AppendElement(new DelayedDialogData(parent, aType, aName, aFeatures, params)); nsRefPtr ev = NS_NewRunnableMethod(this, &TabParent::HandleDelayedDialogs); NS_DispatchToCurrentThread(ev); return parent; } void TabParent::HandleDelayedDialogs() { nsCOMPtr ww = do_GetService(NS_WINDOWWATCHER_CONTRACTID); nsCOMPtr window; nsCOMPtr frame = do_QueryInterface(mFrameElement); if (frame) { window = do_QueryInterface(frame->OwnerDoc()->GetWindow()); } nsCOMPtr dialogCreator = do_QueryInterface(mBrowserDOMWindow); while (!ShouldDelayDialogs() && mDelayedDialogs.Length()) { PRUint32 index = mDelayedDialogs.Length() - 1; DelayedDialogData* data = mDelayedDialogs[index]; mDelayedDialogs.RemoveElementAt(index); nsCOMPtr params; params.swap(data->mParams); PContentDialogParent* dialog = data->mDialog; if (dialogCreator) { dialogCreator->OpenDialog(data->mType, data->mName, data->mFeatures, params, mFrameElement); } else if (ww) { nsCAutoString url; if (data->mType) { if (data->mType == nsIDialogCreator::SELECT_DIALOG) { url.Assign("chrome://global/content/selectDialog.xul"); } else if (data->mType == nsIDialogCreator::GENERIC_DIALOG) { url.Assign("chrome://global/content/commonDialog.xul"); } nsCOMPtr arguments(do_QueryInterface(params)); nsCOMPtr dialog; ww->OpenWindow(window, url.get(), data->mName.get(), data->mFeatures.get(), arguments, getter_AddRefs(dialog)); } else { NS_WARNING("unknown dialog types aren't automatically supported in E10s yet!"); } } delete data; if (dialog) { InfallibleTArray intParams; InfallibleTArray stringParams; TabChild::ParamsToArrays(params, intParams, stringParams); unused << PContentDialogParent::Send__delete__(dialog, intParams, stringParams); } } if (ShouldDelayDialogs() && mDelayedDialogs.Length()) { nsContentUtils::DispatchTrustedEvent(frame->OwnerDoc(), frame, NS_LITERAL_STRING("MozDelayedModalDialog"), true, true); } } PRenderFrameParent* TabParent::AllocPRenderFrame(ScrollingBehavior* aScrolling, LayersBackend* aBackend, int32_t* aMaxTextureSize, uint64_t* aLayersId) { MOZ_ASSERT(ManagedPRenderFrameParent().IsEmpty()); nsRefPtr frameLoader = GetFrameLoader(); *aScrolling = UseAsyncPanZoom() ? ASYNC_PAN_ZOOM : DEFAULT_SCROLLING; return new RenderFrameParent(frameLoader, *aScrolling, aBackend, aMaxTextureSize, aLayersId); } bool TabParent::DeallocPRenderFrame(PRenderFrameParent* aFrame) { delete aFrame; return true; } mozilla::docshell::POfflineCacheUpdateParent* TabParent::AllocPOfflineCacheUpdate(const URI& aManifestURI, const URI& aDocumentURI, const nsCString& aClientID, const bool& stickDocument) { nsRefPtr update = new mozilla::docshell::OfflineCacheUpdateParent(); nsresult rv = update->Schedule(aManifestURI, aDocumentURI, aClientID, stickDocument); if (NS_FAILED(rv)) return nullptr; POfflineCacheUpdateParent* result = update.get(); update.forget(); return result; } bool TabParent::DeallocPOfflineCacheUpdate(mozilla::docshell::POfflineCacheUpdateParent* actor) { mozilla::docshell::OfflineCacheUpdateParent* update = static_cast(actor); update->Release(); return true; } bool TabParent::ShouldDelayDialogs() { nsRefPtr frameLoader = GetFrameLoader(); NS_ENSURE_TRUE(frameLoader, true); bool delay = false; frameLoader->GetDelayRemoteDialogs(&delay); return delay; } bool TabParent::AllowContentIME() { nsFocusManager* fm = nsFocusManager::GetFocusManager(); NS_ENSURE_TRUE(fm, false); nsCOMPtr focusedContent = fm->GetFocusedContent(); if (focusedContent && focusedContent->IsEditable()) return false; return true; } already_AddRefed TabParent::GetFrameLoader() const { nsCOMPtr frameLoaderOwner = do_QueryInterface(mFrameElement); return frameLoaderOwner ? frameLoaderOwner->GetFrameLoader() : nullptr; } void TabParent::TryCacheDPI() { if (mDPI > 0) { return; } nsCOMPtr widget = GetWidget(); if (!widget && mFrameElement) { // Even if we don't have a widget (e.g. because we're display:none), there's // probably a widget somewhere in the hierarchy our frame element lives in. nsCOMPtr ownerDoc; mFrameElement->GetOwnerDocument(getter_AddRefs(ownerDoc)); nsCOMPtr doc = do_QueryInterface(ownerDoc); widget = nsContentUtils::WidgetForDocument(doc); } if (widget) { mDPI = widget->GetDPI(); } } already_AddRefed TabParent::GetWidget() const { nsCOMPtr content = do_QueryInterface(mFrameElement); if (!content) return nullptr; nsIFrame *frame = content->GetPrimaryFrame(); if (!frame) return nullptr; nsCOMPtr widget = frame->GetNearestWidget(); return widget.forget(); } bool TabParent::IsForMozBrowser() { nsCOMPtr content = do_QueryInterface(mFrameElement); nsCOMPtr browserFrame = do_QueryInterface(content); if (browserFrame) { bool isBrowser = false; browserFrame->GetReallyIsBrowser(&isBrowser); return isBrowser; } return false; } bool TabParent::UseAsyncPanZoom() { bool usingOffMainThreadCompositing = !!CompositorParent::CompositorLoop(); bool asyncPanZoomEnabled = Preferences::GetBool("layers.async-pan-zoom.enabled", false); ContentParent* cp = static_cast(Manager()); return (usingOffMainThreadCompositing && !cp->IsForApp() && IsForMozBrowser() && asyncPanZoomEnabled); } void TabParent::MaybeForwardEventToRenderFrame(const nsInputEvent& aEvent, nsInputEvent* aOutEvent) { if (RenderFrameParent* rfp = GetRenderFrame()) { rfp->NotifyInputEvent(aEvent, aOutEvent); } } bool TabParent::RecvBrowserFrameOpenWindow(PBrowserParent* aOpener, const nsString& aURL, const nsString& aName, const nsString& aFeatures, bool* aOutWindowOpened) { *aOutWindowOpened = BrowserElementParent::OpenWindowOOP(static_cast(aOpener), this, aURL, aName, aFeatures); return true; } } // namespace tabs } // namespace mozilla