2010-03-26 18:39:39 +00:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8; -*- */
|
2010-06-24 22:20:42 +00:00
|
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
2012-05-21 11:12:37 +00: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/. */
|
2009-09-09 22:00:14 +00:00
|
|
|
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "base/basictypes.h"
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2012-08-02 06:02:29 +00:00
|
|
|
#include "TabParent.h"
|
|
|
|
|
2013-11-06 17:21:17 +00:00
|
|
|
#include "AppProcessChecker.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "IDBFactory.h"
|
|
|
|
#include "IndexedDBParent.h"
|
2012-08-09 02:58:06 +00:00
|
|
|
#include "mozIApplication.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "mozilla/BrowserElementParent.h"
|
|
|
|
#include "mozilla/docshell/OfflineCacheUpdateParent.h"
|
2010-08-20 23:24:41 +00:00
|
|
|
#include "mozilla/dom/ContentParent.h"
|
2014-02-09 20:34:40 +00:00
|
|
|
#include "mozilla/dom/PContentPermissionRequestParent.h"
|
2014-04-01 04:09:23 +00:00
|
|
|
#include "mozilla/EventStateManager.h"
|
2012-12-23 13:48:07 +00:00
|
|
|
#include "mozilla/Hal.h"
|
2009-10-29 17:58:31 +00:00
|
|
|
#include "mozilla/ipc/DocumentRendererParent.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "mozilla/layers/CompositorParent.h"
|
2010-08-20 23:24:41 +00:00
|
|
|
#include "mozilla/layout/RenderFrameParent.h"
|
2013-09-25 11:21:18 +00:00
|
|
|
#include "mozilla/MouseEvents.h"
|
2014-06-11 05:44:36 +00:00
|
|
|
#include "mozilla/net/NeckoChild.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "mozilla/Preferences.h"
|
2013-09-25 11:21:19 +00:00
|
|
|
#include "mozilla/TextEvents.h"
|
2013-09-25 11:21:16 +00:00
|
|
|
#include "mozilla/TouchEvents.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "mozilla/unused.h"
|
2009-11-05 18:14:22 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "nsContentPermissionHelper.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsDebug.h"
|
|
|
|
#include "nsFocusManager.h"
|
2010-01-01 01:35:55 +00:00
|
|
|
#include "nsFrameLoader.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "nsIContent.h"
|
2013-03-28 05:12:03 +00:00
|
|
|
#include "nsIDocShell.h"
|
2013-09-23 21:30:40 +00:00
|
|
|
#include "nsIDocShellTreeOwner.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDOMEvent.h"
|
|
|
|
#include "nsIDOMWindow.h"
|
2014-04-04 21:50:42 +00:00
|
|
|
#include "nsIDOMWindowUtils.h"
|
2013-09-23 21:30:40 +00:00
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
2014-07-10 06:56:36 +00:00
|
|
|
#include "nsILoadInfo.h"
|
2010-06-24 22:20:42 +00:00
|
|
|
#include "nsIPromptFactory.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "nsIURI.h"
|
2013-07-25 19:45:31 +00:00
|
|
|
#include "nsIWebBrowserChrome.h"
|
2014-06-20 18:07:47 +00:00
|
|
|
#include "nsIWindowCreator2.h"
|
2013-07-25 19:45:31 +00:00
|
|
|
#include "nsIXULBrowserWindow.h"
|
|
|
|
#include "nsIXULWindow.h"
|
2013-01-05 03:12:24 +00:00
|
|
|
#include "nsViewManager.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsIWindowWatcher.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
2014-06-20 18:07:47 +00:00
|
|
|
#include "nsPIWindowWatcher.h"
|
2012-04-25 16:35:58 +00:00
|
|
|
#include "nsPrintfCString.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2014-06-20 18:07:47 +00:00
|
|
|
#include "nsWindowWatcher.h"
|
2013-02-15 22:27:21 +00:00
|
|
|
#include "private/pprio.h"
|
2013-11-06 17:21:15 +00:00
|
|
|
#include "PermissionMessageUtils.h"
|
2012-08-02 06:02:29 +00:00
|
|
|
#include "StructuredCloneUtils.h"
|
2014-02-23 20:19:43 +00:00
|
|
|
#include "ColorPickerParent.h"
|
2013-07-10 22:05:39 +00:00
|
|
|
#include "JavaScriptParent.h"
|
2014-02-18 00:30:06 +00:00
|
|
|
#include "FilePickerParent.h"
|
2012-07-20 06:48:27 +00:00
|
|
|
#include "TabChild.h"
|
2014-01-11 01:10:57 +00:00
|
|
|
#include "LoadContext.h"
|
2013-09-23 21:30:40 +00:00
|
|
|
#include "nsNetCID.h"
|
2014-06-11 05:44:36 +00:00
|
|
|
#include "nsIAuthInformation.h"
|
|
|
|
#include "nsIAuthPromptCallback.h"
|
|
|
|
#include "nsAuthInformationHolder.h"
|
|
|
|
#include "nsICancelable.h"
|
2014-06-03 13:39:44 +00:00
|
|
|
#include "gfxPrefs.h"
|
2013-01-15 12:22:03 +00:00
|
|
|
#include <algorithm>
|
2010-07-19 18:33:33 +00:00
|
|
|
|
2010-08-20 23:24:41 +00:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
using namespace mozilla::ipc;
|
2012-07-20 06:48:27 +00:00
|
|
|
using namespace mozilla::layers;
|
2010-08-20 23:24:41 +00:00
|
|
|
using namespace mozilla::layout;
|
2012-08-09 02:58:06 +00:00
|
|
|
using namespace mozilla::services;
|
2011-11-27 11:51:52 +00:00
|
|
|
using namespace mozilla::widget;
|
2012-06-01 17:21:12 +00:00
|
|
|
using namespace mozilla::dom::indexedDB;
|
2013-07-10 22:05:39 +00:00
|
|
|
using namespace mozilla::jsipc;
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2010-03-26 18:39:39 +00:00
|
|
|
// The flags passed by the webProgress notifications are 16 bits shifted
|
|
|
|
// from the ones registered by webProgressListeners.
|
|
|
|
#define NOTIFY_FLAG_SHIFT 16
|
|
|
|
|
2013-02-15 22:27:21 +00:00
|
|
|
class OpenFileAndSendFDRunnable : public nsRunnable
|
|
|
|
{
|
|
|
|
const nsString mPath;
|
|
|
|
nsRefPtr<TabParent> mTabParent;
|
|
|
|
nsCOMPtr<nsIEventTarget> mEventTarget;
|
|
|
|
PRFileDesc* mFD;
|
|
|
|
|
|
|
|
public:
|
|
|
|
OpenFileAndSendFDRunnable(const nsAString& aPath, TabParent* aTabParent)
|
|
|
|
: mPath(aPath), mTabParent(aTabParent), mFD(nullptr)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(!aPath.IsEmpty());
|
|
|
|
MOZ_ASSERT(aTabParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Dispatch()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
mEventTarget = do_GetService(NS_STREAMTRANSPORTSERVICE_CONTRACTID);
|
|
|
|
NS_ENSURE_TRUE_VOID(mEventTarget);
|
|
|
|
|
|
|
|
nsresult rv = mEventTarget->Dispatch(this, NS_DISPATCH_NORMAL);
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
~OpenFileAndSendFDRunnable()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mFD);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This shouldn't be called directly except by the event loop. Use Dispatch
|
|
|
|
// to start the sequence.
|
|
|
|
NS_IMETHOD Run()
|
|
|
|
{
|
|
|
|
if (NS_IsMainThread()) {
|
|
|
|
SendResponse();
|
|
|
|
} else if (mFD) {
|
|
|
|
CloseFile();
|
|
|
|
} else {
|
|
|
|
OpenFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SendResponse()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(mTabParent);
|
|
|
|
MOZ_ASSERT(mEventTarget);
|
|
|
|
MOZ_ASSERT(mFD);
|
|
|
|
|
|
|
|
nsRefPtr<TabParent> tabParent;
|
|
|
|
mTabParent.swap(tabParent);
|
|
|
|
|
2013-11-26 16:39:19 +00:00
|
|
|
using mozilla::ipc::FileDescriptor;
|
|
|
|
|
2013-02-15 22:27:21 +00:00
|
|
|
FileDescriptor::PlatformHandleType handle =
|
|
|
|
FileDescriptor::PlatformHandleType(PR_FileDesc2NativeHandle(mFD));
|
|
|
|
|
2014-07-28 17:17:51 +00:00
|
|
|
mozilla::unused << tabParent->SendCacheFileDescriptor(mPath, FileDescriptor(handle));
|
2013-02-15 22:27:21 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIEventTarget> eventTarget;
|
|
|
|
mEventTarget.swap(eventTarget);
|
|
|
|
|
|
|
|
if (NS_FAILED(eventTarget->Dispatch(this, NS_DISPATCH_NORMAL))) {
|
|
|
|
NS_WARNING("Failed to dispatch to stream transport service!");
|
|
|
|
|
|
|
|
// It's probably safer to take the main thread IO hit here rather
|
|
|
|
// than leak a file descriptor.
|
|
|
|
CloseFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpenFile()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(!mFD);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
nsresult rv = NS_NewLocalFile(mPath, false, getter_AddRefs(file));
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
PRFileDesc* fd;
|
|
|
|
rv = file->OpenNSPRFileDesc(PR_RDONLY, 0, &fd);
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
mFD = fd;
|
|
|
|
|
2014-05-23 19:53:17 +00:00
|
|
|
if (NS_FAILED(NS_DispatchToMainThread(this))) {
|
2013-02-15 22:27:21 +00:00
|
|
|
NS_WARNING("Failed to dispatch to main thread!");
|
|
|
|
|
|
|
|
CloseFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CloseFile()
|
|
|
|
{
|
|
|
|
// It's possible for this to happen on the main thread if the dispatch
|
|
|
|
// to the stream service fails after we've already opened the file so
|
|
|
|
// we can't assert the thread we're running on.
|
|
|
|
|
|
|
|
MOZ_ASSERT(mFD);
|
|
|
|
|
2013-12-04 22:46:20 +00:00
|
|
|
PRStatus prrc;
|
|
|
|
prrc = PR_Close(mFD);
|
|
|
|
if (prrc != PR_SUCCESS) {
|
|
|
|
NS_ERROR("PR_Close() failed.");
|
|
|
|
}
|
2013-02-15 22:27:21 +00:00
|
|
|
mFD = nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-06-30 20:39:22 +00:00
|
|
|
namespace mozilla {
|
2009-08-12 16:18:08 +00:00
|
|
|
namespace dom {
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2012-09-11 20:05:52 +00:00
|
|
|
TabParent* sEventCapturer;
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
TabParent *TabParent::mIMETabParent = nullptr;
|
2010-09-24 03:28:15 +00:00
|
|
|
|
2014-06-06 02:49:43 +00:00
|
|
|
NS_IMPL_ISUPPORTS(TabParent,
|
|
|
|
nsITabParent,
|
|
|
|
nsIAuthPromptProvider,
|
|
|
|
nsISecureBrowserUI,
|
|
|
|
nsISupportsWeakReference)
|
2010-03-26 18:39:39 +00:00
|
|
|
|
2014-06-11 05:44:03 +00:00
|
|
|
TabParent::TabParent(nsIContentParent* aManager, const TabContext& aContext, uint32_t aChromeFlags)
|
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 18:32:37 +00:00
|
|
|
: TabContext(aContext)
|
2013-10-28 14:04:12 +00:00
|
|
|
, mFrameElement(nullptr)
|
2012-06-01 14:35:16 +00:00
|
|
|
, mIMESelectionAnchor(0)
|
|
|
|
, mIMESelectionFocus(0)
|
|
|
|
, mIMEComposing(false)
|
2011-10-17 14:59:28 +00:00
|
|
|
, mIMECompositionEnding(false)
|
2012-06-01 14:35:16 +00:00
|
|
|
, mIMECompositionStart(0)
|
2011-01-11 21:34:31 +00:00
|
|
|
, mIMESeqno(0)
|
2013-11-22 02:58:20 +00:00
|
|
|
, mIMECompositionRectOffset(0)
|
2012-09-11 20:05:52 +00:00
|
|
|
, mEventCaptureDepth(0)
|
2013-01-29 07:49:38 +00:00
|
|
|
, mRect(0, 0, 0, 0)
|
2012-09-29 02:16:36 +00:00
|
|
|
, mDimensions(0, 0)
|
2013-01-29 07:49:38 +00:00
|
|
|
, mOrientation(0)
|
2010-12-09 18:57:05 +00:00
|
|
|
, mDPI(0)
|
2013-05-01 23:06:19 +00:00
|
|
|
, mDefaultScale(0)
|
2012-04-25 16:35:58 +00:00
|
|
|
, mShown(false)
|
2013-01-29 07:49:38 +00:00
|
|
|
, mUpdatedDimensions(false)
|
2013-07-10 17:07:51 +00:00
|
|
|
, mManager(aManager)
|
2013-01-10 13:22:14 +00:00
|
|
|
, mMarkedDestroying(false)
|
2012-11-10 06:09:24 +00:00
|
|
|
, mIsDestroyed(false)
|
2013-02-15 22:27:21 +00:00
|
|
|
, mAppPackageFileDescriptorSent(false)
|
2014-01-11 01:10:57 +00:00
|
|
|
, mChromeFlags(aChromeFlags)
|
2009-06-30 20:39:22 +00:00
|
|
|
{
|
2014-06-11 05:44:03 +00:00
|
|
|
MOZ_ASSERT(aManager);
|
2009-06-30 20:39:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TabParent::~TabParent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-12-09 18:57:05 +00:00
|
|
|
void
|
2013-07-23 23:39:17 +00:00
|
|
|
TabParent::SetOwnerElement(Element* aElement)
|
2010-12-09 18:57:05 +00:00
|
|
|
{
|
|
|
|
mFrameElement = aElement;
|
2013-05-01 23:06:19 +00:00
|
|
|
TryCacheDPIAndScale();
|
2010-12-09 18:57:05 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 00:53:26 +00:00
|
|
|
void
|
|
|
|
TabParent::GetAppType(nsAString& aOut)
|
|
|
|
{
|
|
|
|
aOut.Truncate();
|
|
|
|
nsCOMPtr<Element> elem = do_QueryInterface(mFrameElement);
|
|
|
|
if (!elem) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
elem->GetAttr(kNameSpaceID_None, nsGkAtoms::mozapptype, aOut);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::IsVisible()
|
|
|
|
{
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (!frameLoader) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool visible = false;
|
|
|
|
frameLoader->GetVisible(&visible);
|
|
|
|
return visible;
|
|
|
|
}
|
|
|
|
|
2011-01-06 04:54:47 +00:00
|
|
|
void
|
|
|
|
TabParent::Destroy()
|
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-06 04:54:47 +00:00
|
|
|
// 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();
|
|
|
|
|
2012-10-05 19:09:33 +00:00
|
|
|
const InfallibleTArray<PIndexedDBParent*>& idbParents =
|
|
|
|
ManagedPIndexedDBParent();
|
|
|
|
for (uint32_t i = 0; i < idbParents.Length(); ++i) {
|
|
|
|
static_cast<IndexedDBParent*>(idbParents[i])->Disconnect();
|
|
|
|
}
|
|
|
|
|
2014-01-15 20:20:33 +00:00
|
|
|
const InfallibleTArray<POfflineCacheUpdateParent*>& ocuParents =
|
|
|
|
ManagedPOfflineCacheUpdateParent();
|
|
|
|
for (uint32_t i = 0; i < ocuParents.Length(); ++i) {
|
|
|
|
nsRefPtr<mozilla::docshell::OfflineCacheUpdateParent> ocuParent =
|
|
|
|
static_cast<mozilla::docshell::OfflineCacheUpdateParent*>(ocuParents[i]);
|
|
|
|
ocuParent->StopSendingMessagesToChild();
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:48:27 +00:00
|
|
|
if (RenderFrameParent* frame = GetRenderFrame()) {
|
|
|
|
frame->Destroy();
|
2011-01-06 04:54:47 +00:00
|
|
|
}
|
2012-11-10 06:09:24 +00:00
|
|
|
mIsDestroyed = true;
|
2013-01-10 13:22:14 +00:00
|
|
|
|
2014-06-11 05:44:03 +00:00
|
|
|
if (XRE_GetProcessType() == GeckoProcessType_Default) {
|
|
|
|
Manager()->AsContentParent()->NotifyTabDestroying(this);
|
|
|
|
}
|
2013-01-10 13:22:14 +00:00
|
|
|
mMarkedDestroying = true;
|
2011-01-06 04:54:47 +00:00
|
|
|
}
|
|
|
|
|
2012-07-17 18:27:27 +00:00
|
|
|
bool
|
|
|
|
TabParent::Recv__delete__()
|
|
|
|
{
|
2014-06-11 05:44:03 +00:00
|
|
|
if (XRE_GetProcessType() == GeckoProcessType_Default) {
|
|
|
|
Manager()->AsContentParent()->NotifyTabDestroyed(this, mMarkedDestroying);
|
|
|
|
}
|
2012-07-17 18:27:27 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-04-12 00:34:02 +00:00
|
|
|
void
|
|
|
|
TabParent::ActorDestroy(ActorDestroyReason why)
|
|
|
|
{
|
2012-09-11 20:05:52 +00:00
|
|
|
if (sEventCapturer == this) {
|
|
|
|
sEventCapturer = nullptr;
|
|
|
|
}
|
|
|
|
if (mIMETabParent == this) {
|
2012-07-30 14:20:58 +00:00
|
|
|
mIMETabParent = nullptr;
|
2012-09-11 20:05:52 +00:00
|
|
|
}
|
2010-08-05 22:11:23 +00:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
2013-04-26 00:53:26 +00:00
|
|
|
nsCOMPtr<nsIObserverService> os = services::GetObserverService();
|
2013-10-15 21:15:30 +00:00
|
|
|
nsRefPtr<nsFrameMessageManager> fmm;
|
2010-08-05 22:11:23 +00:00
|
|
|
if (frameLoader) {
|
2013-10-15 21:15:30 +00:00
|
|
|
fmm = frameLoader->GetFrameMessageManager();
|
2013-09-03 22:11:22 +00:00
|
|
|
nsCOMPtr<Element> frameElement(mFrameElement);
|
2013-11-06 17:21:15 +00:00
|
|
|
ReceiveMessage(CHILD_PROCESS_SHUTDOWN_MESSAGE, false, nullptr, nullptr,
|
|
|
|
nullptr);
|
2010-08-05 22:11:23 +00:00
|
|
|
frameLoader->DestroyChild();
|
2012-08-02 14:26:57 +00:00
|
|
|
|
2013-04-26 00:53:26 +00:00
|
|
|
if (why == AbnormalShutdown && os) {
|
|
|
|
os->NotifyObservers(NS_ISUPPORTS_CAST(nsIFrameLoader*, frameLoader),
|
|
|
|
"oop-frameloader-crashed", nullptr);
|
2013-09-03 22:11:22 +00:00
|
|
|
nsContentUtils::DispatchTrustedEvent(frameElement->OwnerDoc(), frameElement,
|
|
|
|
NS_LITERAL_STRING("oop-browser-crashed"),
|
|
|
|
true, true);
|
2012-08-02 14:26:57 +00:00
|
|
|
}
|
2010-04-12 00:34:02 +00:00
|
|
|
}
|
2013-04-26 00:53:26 +00:00
|
|
|
|
|
|
|
if (os) {
|
|
|
|
os->NotifyObservers(NS_ISUPPORTS_CAST(nsITabParent*, this), "ipc:browser-destroyed", nullptr);
|
|
|
|
}
|
2013-10-15 21:15:30 +00:00
|
|
|
if (fmm) {
|
|
|
|
fmm->Disconnect();
|
|
|
|
}
|
2010-04-12 00:34:02 +00:00
|
|
|
}
|
|
|
|
|
2009-11-05 18:14:22 +00:00
|
|
|
bool
|
2010-07-19 18:33:33 +00:00
|
|
|
TabParent::RecvMoveFocus(const bool& aForward)
|
2009-11-05 18:14:22 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFocusManager> fm = do_GetService(FOCUSMANAGER_CONTRACTID);
|
|
|
|
if (fm) {
|
|
|
|
nsCOMPtr<nsIDOMElement> dummy;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t type = aForward ? uint32_t(nsIFocusManager::MOVEFOCUS_FORWARD)
|
|
|
|
: uint32_t(nsIFocusManager::MOVEFOCUS_BACKWARD);
|
2013-07-23 23:39:17 +00:00
|
|
|
nsCOMPtr<nsIDOMElement> frame = do_QueryInterface(mFrameElement);
|
|
|
|
fm->MoveFocus(nullptr, frame, type, nsIFocusManager::FLAG_BYKEY,
|
2009-11-05 18:14:22 +00:00
|
|
|
getter_AddRefs(dummy));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-17 14:22:23 +00:00
|
|
|
bool
|
2010-07-19 18:33:33 +00:00
|
|
|
TabParent::RecvEvent(const RemoteDOMEvent& aEvent)
|
2009-11-17 14:22:23 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMEvent> event = do_QueryInterface(aEvent.mEvent);
|
|
|
|
NS_ENSURE_TRUE(event, true);
|
|
|
|
|
2013-03-09 11:34:29 +00:00
|
|
|
nsCOMPtr<mozilla::dom::EventTarget> target = do_QueryInterface(mFrameElement);
|
2009-11-17 14:22:23 +00:00
|
|
|
NS_ENSURE_TRUE(target, true);
|
|
|
|
|
2013-03-09 11:34:29 +00:00
|
|
|
event->SetOwner(target);
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool dummy;
|
2009-11-17 14:22:23 +00:00
|
|
|
target->DispatchEvent(event, &dummy);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-01-01 01:35:55 +00:00
|
|
|
bool
|
2014-06-20 18:07:47 +00:00
|
|
|
TabParent::AnswerCreateWindow(const uint32_t& aChromeFlags,
|
|
|
|
const bool& aCalledFromJS,
|
|
|
|
const bool& aPositionSpecified,
|
|
|
|
const bool& aSizeSpecified,
|
|
|
|
const nsString& aURI,
|
|
|
|
const nsString& aName,
|
|
|
|
const nsString& aFeatures,
|
|
|
|
const nsString& aBaseURI,
|
|
|
|
bool* aWindowIsNew,
|
|
|
|
PBrowserParent** aRetVal)
|
2010-01-01 01:35:55 +00:00
|
|
|
{
|
2014-06-20 18:07:47 +00:00
|
|
|
if (IsBrowserOrApp()) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-01-01 01:35:55 +00:00
|
|
|
|
2014-06-20 18:07:47 +00:00
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsPIWindowWatcher> pwwatch =
|
|
|
|
do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> frame(do_QueryInterface(mFrameElement));
|
|
|
|
NS_ENSURE_TRUE(frame, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> parent = do_QueryInterface(frame->OwnerDoc()->GetWindow());
|
|
|
|
NS_ENSURE_TRUE(parent, false);
|
|
|
|
|
|
|
|
int32_t openLocation =
|
|
|
|
nsWindowWatcher::GetWindowOpenLocation(parent, aChromeFlags, aCalledFromJS,
|
|
|
|
aPositionSpecified, aSizeSpecified);
|
|
|
|
|
|
|
|
MOZ_ASSERT(openLocation == nsIBrowserDOMWindow::OPEN_NEWTAB ||
|
|
|
|
openLocation == nsIBrowserDOMWindow::OPEN_NEWWINDOW);
|
|
|
|
|
|
|
|
*aWindowIsNew = true;
|
|
|
|
|
|
|
|
// Opening new tabs is the easy case...
|
|
|
|
if (openLocation == nsIBrowserDOMWindow::OPEN_NEWTAB) {
|
|
|
|
NS_ENSURE_TRUE(mBrowserDOMWindow, false);
|
2012-08-28 17:22:59 +00:00
|
|
|
|
2010-01-01 01:35:55 +00:00
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> frameLoaderOwner;
|
2012-07-30 14:20:58 +00:00
|
|
|
mBrowserDOMWindow->OpenURIInFrame(nullptr, nullptr,
|
2010-01-01 01:35:55 +00:00
|
|
|
nsIBrowserDOMWindow::OPEN_NEWTAB,
|
|
|
|
nsIBrowserDOMWindow::OPEN_NEW,
|
|
|
|
getter_AddRefs(frameLoaderOwner));
|
2014-06-20 18:07:47 +00:00
|
|
|
NS_ENSURE_TRUE(frameLoaderOwner, false);
|
2010-01-01 01:35:55 +00:00
|
|
|
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = frameLoaderOwner->GetFrameLoader();
|
2014-06-20 18:07:47 +00:00
|
|
|
NS_ENSURE_TRUE(frameLoader, false);
|
2010-01-01 01:35:55 +00:00
|
|
|
|
2014-06-20 18:07:47 +00:00
|
|
|
*aRetVal = frameLoader->GetRemoteBrowser();
|
2010-01-01 01:35:55 +00:00
|
|
|
return true;
|
2014-06-20 18:07:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WindowWatcher is going to expect a valid URI to open a window
|
|
|
|
// to. If it can't find one, it's going to attempt to figure one
|
|
|
|
// out on its own, which is problematic because it can't access
|
|
|
|
// the document for the remote browser we're opening. Luckily,
|
|
|
|
// TabChild has sent us a baseURI with which we can ensure that
|
|
|
|
// the URI we pass to WindowWatcher is valid.
|
|
|
|
nsCOMPtr<nsIURI> baseURI;
|
|
|
|
rv = NS_NewURI(getter_AddRefs(baseURI), aBaseURI);
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIURI> finalURI;
|
|
|
|
rv = NS_NewURI(getter_AddRefs(finalURI), NS_ConvertUTF16toUTF8(aURI).get(), baseURI);
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
|
|
|
nsAutoCString finalURIString;
|
|
|
|
finalURI->GetSpec(finalURIString);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> window;
|
|
|
|
|
|
|
|
rv = pwwatch->OpenWindow2(parent, finalURIString.get(),
|
|
|
|
NS_ConvertUTF16toUTF8(aName).get(),
|
|
|
|
NS_ConvertUTF16toUTF8(aFeatures).get(), aCalledFromJS,
|
|
|
|
false, false, this, nullptr, getter_AddRefs(window));
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsPIDOMWindow> pwindow = do_QueryInterface(window);
|
|
|
|
NS_ENSURE_TRUE(pwindow, false);
|
|
|
|
|
|
|
|
nsRefPtr<nsIDocShell> newDocShell = pwindow->GetDocShell();
|
|
|
|
NS_ENSURE_TRUE(newDocShell, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsITabParent> newRemoteTab = newDocShell->GetOpenedRemote();
|
|
|
|
NS_ENSURE_TRUE(newRemoteTab, false);
|
|
|
|
|
|
|
|
*aRetVal = static_cast<TabParent*>(newRemoteTab.get());
|
|
|
|
return true;
|
2010-01-01 01:35:55 +00:00
|
|
|
}
|
|
|
|
|
2009-06-30 20:39:22 +00:00
|
|
|
void
|
|
|
|
TabParent::LoadURL(nsIURI* aURI)
|
|
|
|
{
|
2013-02-15 22:27:21 +00:00
|
|
|
MOZ_ASSERT(aURI);
|
|
|
|
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
2013-02-15 22:27:21 +00:00
|
|
|
return;
|
2012-04-25 16:35:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-30 20:39:22 +00:00
|
|
|
nsCString spec;
|
|
|
|
aURI->GetSpec(spec);
|
|
|
|
|
2013-02-15 22:27:21 +00:00
|
|
|
if (!mShown) {
|
|
|
|
NS_WARNING(nsPrintfCString("TabParent::LoadURL(%s) called before "
|
|
|
|
"Show(). Ignoring LoadURL.\n",
|
|
|
|
spec.get()).get());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
unused << SendLoadURL(spec);
|
2013-02-15 22:27:21 +00:00
|
|
|
|
|
|
|
// If this app is a packaged app then we can speed startup by sending over
|
|
|
|
// the file descriptor for the "application.zip" file that it will
|
|
|
|
// invariably request. Only do this once.
|
|
|
|
if (!mAppPackageFileDescriptorSent) {
|
|
|
|
mAppPackageFileDescriptorSent = true;
|
|
|
|
|
|
|
|
nsCOMPtr<mozIApplication> app = GetOwnOrContainingApp();
|
|
|
|
if (app) {
|
|
|
|
nsString manifestURL;
|
|
|
|
nsresult rv = app->GetManifestURL(manifestURL);
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
if (StringBeginsWith(manifestURL, NS_LITERAL_STRING("app:"))) {
|
|
|
|
nsString basePath;
|
|
|
|
rv = app->GetBasePath(basePath);
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
nsString appId;
|
|
|
|
rv = app->GetId(appId);
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> packageFile;
|
|
|
|
rv = NS_NewLocalFile(basePath, false,
|
|
|
|
getter_AddRefs(packageFile));
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
rv = packageFile->Append(appId);
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
rv = packageFile->Append(NS_LITERAL_STRING("application.zip"));
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
nsString path;
|
|
|
|
rv = packageFile->GetPath(path);
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
nsRefPtr<OpenFileAndSendFDRunnable> openFileRunnable =
|
|
|
|
new OpenFileAndSendFDRunnable(path, this);
|
|
|
|
openFileRunnable->Dispatch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-06-30 20:39:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-08-20 23:24:40 +00:00
|
|
|
TabParent::Show(const nsIntSize& size)
|
2009-06-30 20:39:22 +00:00
|
|
|
{
|
2010-08-20 23:24:40 +00:00
|
|
|
// sigh
|
2012-04-25 16:35:58 +00:00
|
|
|
mShown = true;
|
2012-09-29 02:16:36 +00:00
|
|
|
mDimensions = size;
|
2012-11-10 06:09:24 +00:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendShow(size);
|
|
|
|
}
|
2010-08-20 23:24:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-08-08 17:23:50 +00:00
|
|
|
TabParent::UpdateDimensions(const nsIntRect& rect, const nsIntSize& size)
|
2010-08-20 23:24:40 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return;
|
|
|
|
}
|
2012-11-22 02:40:57 +00:00
|
|
|
hal::ScreenConfiguration config;
|
|
|
|
hal::GetCurrentScreenConfiguration(&config);
|
2013-01-29 07:49:38 +00:00
|
|
|
ScreenOrientation orientation = config.orientation();
|
2012-11-22 02:40:57 +00:00
|
|
|
|
2013-01-29 07:49:38 +00:00
|
|
|
if (!mUpdatedDimensions || mOrientation != orientation ||
|
|
|
|
mDimensions != size || !mRect.IsEqualEdges(rect)) {
|
|
|
|
mUpdatedDimensions = true;
|
|
|
|
mRect = rect;
|
|
|
|
mDimensions = size;
|
|
|
|
mOrientation = orientation;
|
|
|
|
|
|
|
|
unused << SendUpdateDimensions(mRect, mDimensions, mOrientation);
|
2012-07-20 06:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::UpdateFrame(const FrameMetrics& aFrameMetrics)
|
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendUpdateFrame(aFrameMetrics);
|
|
|
|
}
|
2012-08-09 04:39:02 +00:00
|
|
|
}
|
|
|
|
|
2014-05-23 14:36:50 +00:00
|
|
|
void
|
|
|
|
TabParent::UIResolutionChanged()
|
|
|
|
{
|
|
|
|
if (!mIsDestroyed) {
|
|
|
|
// TryCacheDPIAndScale()'s cache is keyed off of
|
|
|
|
// mDPI being greater than 0, so this invalidates it.
|
|
|
|
mDPI = -1;
|
|
|
|
unused << SendUIResolutionChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-05 22:43:20 +00:00
|
|
|
void
|
|
|
|
TabParent::AcknowledgeScrollUpdate(const ViewID& aScrollId, const uint32_t& aScrollGeneration)
|
|
|
|
{
|
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendAcknowledgeScrollUpdate(aScrollId, aScrollGeneration);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
void TabParent::HandleDoubleTap(const CSSPoint& aPoint,
|
2014-02-07 17:13:50 +00:00
|
|
|
int32_t aModifiers,
|
|
|
|
const ScrollableLayerGuid &aGuid)
|
2012-08-09 04:39:02 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (!mIsDestroyed) {
|
2014-02-07 17:13:50 +00:00
|
|
|
unused << SendHandleDoubleTap(aPoint, aGuid);
|
2012-11-10 06:09:24 +00:00
|
|
|
}
|
2009-06-30 20:39:22 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
void TabParent::HandleSingleTap(const CSSPoint& aPoint,
|
2014-02-07 17:13:50 +00:00
|
|
|
int32_t aModifiers,
|
|
|
|
const ScrollableLayerGuid &aGuid)
|
2012-09-15 01:16:32 +00:00
|
|
|
{
|
2013-11-26 04:30:26 +00:00
|
|
|
// TODO Send the modifier data to TabChild for use in mouse events.
|
2012-11-10 06:09:24 +00:00
|
|
|
if (!mIsDestroyed) {
|
2014-02-07 17:13:50 +00:00
|
|
|
unused << SendHandleSingleTap(aPoint, aGuid);
|
2012-11-10 06:09:24 +00:00
|
|
|
}
|
2012-09-15 01:16:32 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
void TabParent::HandleLongTap(const CSSPoint& aPoint,
|
2014-02-07 17:13:50 +00:00
|
|
|
int32_t aModifiers,
|
|
|
|
const ScrollableLayerGuid &aGuid)
|
2012-11-08 19:35:02 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (!mIsDestroyed) {
|
2014-02-07 17:13:50 +00:00
|
|
|
unused << SendHandleLongTap(aPoint, aGuid);
|
2012-11-10 06:09:24 +00:00
|
|
|
}
|
2012-11-08 19:35:02 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
void TabParent::HandleLongTapUp(const CSSPoint& aPoint,
|
2014-02-07 17:13:50 +00:00
|
|
|
int32_t aModifiers,
|
|
|
|
const ScrollableLayerGuid &aGuid)
|
2013-12-12 00:39:06 +00:00
|
|
|
{
|
|
|
|
if (!mIsDestroyed) {
|
2014-02-07 17:13:50 +00:00
|
|
|
unused << SendHandleLongTapUp(aPoint, aGuid);
|
2013-12-12 00:39:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-15 17:39:20 +00:00
|
|
|
void TabParent::NotifyAPZStateChange(ViewID aViewId,
|
|
|
|
APZStateChange aChange,
|
|
|
|
int aArg)
|
2013-12-10 03:14:55 +00:00
|
|
|
{
|
|
|
|
if (!mIsDestroyed) {
|
2014-04-15 17:39:20 +00:00
|
|
|
unused << SendNotifyAPZStateChange(aViewId, aChange, aArg);
|
2013-12-10 03:14:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-05 18:14:22 +00:00
|
|
|
void
|
|
|
|
TabParent::Activate()
|
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (!mIsDestroyed) {
|
2010-07-19 18:33:33 +00:00
|
|
|
unused << SendActivate();
|
2012-11-10 06:09:24 +00:00
|
|
|
}
|
2009-11-05 18:14:22 +00:00
|
|
|
}
|
|
|
|
|
2011-06-18 00:08:32 +00:00
|
|
|
void
|
|
|
|
TabParent::Deactivate()
|
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendDeactivate();
|
|
|
|
}
|
2011-06-18 00:08:32 +00:00
|
|
|
}
|
|
|
|
|
2010-08-13 08:06:40 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::Init(nsIDOMWindow *window)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
TabParent::GetState(uint32_t *aState)
|
2010-08-13 08:06:40 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aState);
|
2010-09-18 02:11:05 +00:00
|
|
|
NS_WARNING("SecurityState not valid here");
|
2010-11-21 19:21:56 +00:00
|
|
|
*aState = 0;
|
2010-08-13 08:06:40 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-28 05:12:03 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::SetDocShell(nsIDocShell *aDocShell)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aDocShell);
|
|
|
|
NS_WARNING("No mDocShell member in TabParent so there is no docShell to set");
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-10-26 22:20:53 +00:00
|
|
|
PDocumentRendererParent*
|
2013-07-08 15:48:39 +00:00
|
|
|
TabParent::AllocPDocumentRendererParent(const nsRect& documentRect,
|
2013-12-26 18:06:53 +00:00
|
|
|
const gfx::Matrix& transform,
|
2013-07-08 15:48:39 +00:00
|
|
|
const nsString& bgcolor,
|
|
|
|
const uint32_t& renderFlags,
|
|
|
|
const bool& flushLayout,
|
|
|
|
const nsIntSize& renderSize)
|
2009-10-29 17:58:31 +00:00
|
|
|
{
|
|
|
|
return new DocumentRendererParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 15:48:39 +00:00
|
|
|
TabParent::DeallocPDocumentRendererParent(PDocumentRendererParent* actor)
|
2009-10-29 17:58:31 +00:00
|
|
|
{
|
2009-12-03 08:16:14 +00:00
|
|
|
delete actor;
|
2009-10-29 17:58:31 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-10 05:00:08 +00:00
|
|
|
PContentPermissionRequestParent*
|
2014-02-09 20:34:40 +00:00
|
|
|
TabParent::AllocPContentPermissionRequestParent(const InfallibleTArray<PermissionRequest>& aRequests,
|
|
|
|
const IPC::Principal& aPrincipal)
|
2010-05-13 17:44:51 +00:00
|
|
|
{
|
2014-08-01 07:22:20 +00:00
|
|
|
return nsContentPermissionUtils::CreateContentPermissionRequestParent(aRequests, mFrameElement, aPrincipal);
|
2010-05-13 17:44:51 +00:00
|
|
|
}
|
2012-07-30 14:58:26 +00:00
|
|
|
|
2010-05-13 17:44:51 +00:00
|
|
|
bool
|
2013-07-08 15:48:39 +00:00
|
|
|
TabParent::DeallocPContentPermissionRequestParent(PContentPermissionRequestParent* actor)
|
2010-05-13 17:44:51 +00:00
|
|
|
{
|
|
|
|
delete actor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-18 00:30:06 +00:00
|
|
|
PFilePickerParent*
|
|
|
|
TabParent::AllocPFilePickerParent(const nsString& aTitle, const int16_t& aMode)
|
|
|
|
{
|
|
|
|
return new FilePickerParent(aTitle, aMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPFilePickerParent(PFilePickerParent* actor)
|
|
|
|
{
|
|
|
|
delete actor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-05 18:21:09 +00:00
|
|
|
void
|
|
|
|
TabParent::SendMouseEvent(const nsAString& aType, float aX, float aY,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aButton, int32_t aClickCount,
|
|
|
|
int32_t aModifiers, bool aIgnoreRootScrollFrame)
|
2009-11-05 18:21:09 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << PBrowserParent::SendMouseEvent(nsString(aType), aX, aY,
|
|
|
|
aButton, aClickCount,
|
|
|
|
aModifiers, aIgnoreRootScrollFrame);
|
|
|
|
}
|
2009-11-05 18:21:09 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 06:52:18 +00:00
|
|
|
void
|
|
|
|
TabParent::SendKeyEvent(const nsAString& aType,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aKeyCode,
|
|
|
|
int32_t aCharCode,
|
|
|
|
int32_t aModifiers,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aPreventDefault)
|
2010-03-19 06:52:18 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << PBrowserParent::SendKeyEvent(nsString(aType), aKeyCode, aCharCode,
|
|
|
|
aModifiers, aPreventDefault);
|
|
|
|
}
|
2010-03-19 06:52:18 +00:00
|
|
|
}
|
|
|
|
|
2013-08-14 14:15:27 +00:00
|
|
|
bool
|
2013-10-02 03:46:04 +00:00
|
|
|
TabParent::MapEventCoordinatesForChildProcess(WidgetEvent* aEvent)
|
2013-08-14 14:15:27 +00:00
|
|
|
{
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (!frameLoader) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-04-01 04:09:23 +00:00
|
|
|
LayoutDeviceIntPoint offset =
|
|
|
|
EventStateManager::GetChildProcessOffset(frameLoader, *aEvent);
|
2013-08-14 14:15:27 +00:00
|
|
|
MapEventCoordinatesForChildProcess(offset, aEvent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::MapEventCoordinatesForChildProcess(
|
2013-10-02 03:46:04 +00:00
|
|
|
const LayoutDeviceIntPoint& aOffset, WidgetEvent* aEvent)
|
2013-08-14 14:15:27 +00:00
|
|
|
{
|
2014-08-04 05:28:53 +00:00
|
|
|
if (aEvent->mClass != eTouchEventClass) {
|
2013-08-14 14:15:27 +00:00
|
|
|
aEvent->refPoint = aOffset;
|
|
|
|
} else {
|
|
|
|
aEvent->refPoint = LayoutDeviceIntPoint();
|
|
|
|
// Then offset all the touch points by that distance, to put them
|
|
|
|
// in the space where top-left is 0,0.
|
2014-07-08 20:48:19 +00:00
|
|
|
const WidgetTouchEvent::TouchArray& touches =
|
2013-10-18 06:10:23 +00:00
|
|
|
aEvent->AsTouchEvent()->touches;
|
2013-08-14 14:15:27 +00:00
|
|
|
for (uint32_t i = 0; i < touches.Length(); ++i) {
|
|
|
|
Touch* touch = touches[i];
|
|
|
|
if (touch) {
|
|
|
|
touch->mRefPoint += LayoutDeviceIntPoint::ToUntyped(aOffset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-02 06:38:27 +00:00
|
|
|
bool TabParent::SendRealMouseEvent(WidgetMouseEvent& event)
|
2011-06-22 00:32:43 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-05-22 18:49:43 +00:00
|
|
|
nsEventStatus status = MaybeForwardEventToRenderFrame(event, nullptr);
|
|
|
|
if (status == nsEventStatus_eConsumeNoDefault ||
|
|
|
|
!MapEventCoordinatesForChildProcess(&event)) {
|
2013-08-14 14:15:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-10 21:59:46 +00:00
|
|
|
return PBrowserParent::SendRealMouseEvent(event);
|
2011-06-22 00:32:43 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
CSSPoint TabParent::AdjustTapToChildWidget(const CSSPoint& aPoint)
|
2013-12-05 23:17:37 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
|
|
|
|
|
|
|
if (!content || !content->OwnerDoc()) {
|
|
|
|
return aPoint;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIDocument* doc = content->OwnerDoc();
|
|
|
|
if (!doc || !doc->GetShell()) {
|
|
|
|
return aPoint;
|
|
|
|
}
|
|
|
|
nsPresContext* presContext = doc->GetShell()->GetPresContext();
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
return aPoint + CSSPoint(
|
|
|
|
presContext->DevPixelsToFloatCSSPixels(mChildProcessOffsetAtTouchStart.x),
|
|
|
|
presContext->DevPixelsToFloatCSSPixels(mChildProcessOffsetAtTouchStart.y));
|
2013-12-05 23:17:37 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
bool TabParent::SendHandleSingleTap(const CSSPoint& aPoint, const ScrollableLayerGuid& aGuid)
|
2013-12-05 23:17:37 +00:00
|
|
|
{
|
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-02-07 17:13:50 +00:00
|
|
|
return PBrowserParent::SendHandleSingleTap(AdjustTapToChildWidget(aPoint), aGuid);
|
2013-12-05 23:17:37 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
bool TabParent::SendHandleLongTap(const CSSPoint& aPoint, const ScrollableLayerGuid& aGuid)
|
2013-12-05 23:17:37 +00:00
|
|
|
{
|
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-02-07 17:13:50 +00:00
|
|
|
return PBrowserParent::SendHandleLongTap(AdjustTapToChildWidget(aPoint), aGuid);
|
2013-12-05 23:17:37 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
bool TabParent::SendHandleLongTapUp(const CSSPoint& aPoint, const ScrollableLayerGuid& aGuid)
|
2013-12-12 00:39:06 +00:00
|
|
|
{
|
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-02-07 17:13:50 +00:00
|
|
|
return PBrowserParent::SendHandleLongTapUp(AdjustTapToChildWidget(aPoint), aGuid);
|
2013-12-12 00:39:06 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:27:45 +00:00
|
|
|
bool TabParent::SendHandleDoubleTap(const CSSPoint& aPoint, const ScrollableLayerGuid& aGuid)
|
2013-12-05 23:17:37 +00:00
|
|
|
{
|
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-02-07 17:13:50 +00:00
|
|
|
return PBrowserParent::SendHandleDoubleTap(AdjustTapToChildWidget(aPoint), aGuid);
|
2013-12-05 23:17:37 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 09:37:36 +00:00
|
|
|
bool TabParent::SendMouseWheelEvent(WidgetWheelEvent& event)
|
2012-08-12 01:42:34 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-05-22 18:49:43 +00:00
|
|
|
nsEventStatus status = MaybeForwardEventToRenderFrame(event, nullptr);
|
|
|
|
if (status == nsEventStatus_eConsumeNoDefault ||
|
|
|
|
!MapEventCoordinatesForChildProcess(&event)) {
|
2013-08-14 14:15:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-10 21:59:46 +00:00
|
|
|
return PBrowserParent::SendMouseWheelEvent(event);
|
2012-08-12 01:42:34 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 15:46:29 +00:00
|
|
|
static void
|
|
|
|
DoCommandCallback(mozilla::Command aCommand, void* aData)
|
|
|
|
{
|
|
|
|
static_cast<InfallibleTArray<mozilla::CommandInt>*>(aData)->AppendElement(aCommand);
|
|
|
|
}
|
|
|
|
|
2014-04-21 20:40:09 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvRequestNativeKeyBindings(const WidgetKeyboardEvent& aEvent,
|
|
|
|
MaybeNativeKeyBinding* aBindings)
|
|
|
|
{
|
|
|
|
AutoInfallibleTArray<mozilla::CommandInt, 4> singleLine;
|
|
|
|
AutoInfallibleTArray<mozilla::CommandInt, 4> multiLine;
|
|
|
|
AutoInfallibleTArray<mozilla::CommandInt, 4> richText;
|
|
|
|
|
|
|
|
*aBindings = mozilla::void_t();
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
WidgetKeyboardEvent localEvent(aEvent);
|
|
|
|
|
|
|
|
if (NS_FAILED(widget->AttachNativeKeyEvent(localEvent))) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
widget->ExecuteNativeKeyBinding(nsIWidget::NativeKeyBindingsForSingleLineEditor,
|
|
|
|
localEvent, DoCommandCallback, &singleLine);
|
|
|
|
widget->ExecuteNativeKeyBinding(nsIWidget::NativeKeyBindingsForMultiLineEditor,
|
|
|
|
localEvent, DoCommandCallback, &multiLine);
|
|
|
|
widget->ExecuteNativeKeyBinding(nsIWidget::NativeKeyBindingsForRichTextEditor,
|
|
|
|
localEvent, DoCommandCallback, &richText);
|
|
|
|
|
|
|
|
if (!singleLine.IsEmpty() || !multiLine.IsEmpty() || !richText.IsEmpty()) {
|
|
|
|
*aBindings = NativeKeyBinding(singleLine, multiLine, richText);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-01 07:22:58 +00:00
|
|
|
bool TabParent::SendRealKeyEvent(WidgetKeyboardEvent& event)
|
2011-06-22 00:32:43 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-10 21:59:46 +00:00
|
|
|
MaybeForwardEventToRenderFrame(event, nullptr);
|
|
|
|
if (!MapEventCoordinatesForChildProcess(&event)) {
|
2013-08-14 14:15:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-20 15:46:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
MaybeNativeKeyBinding bindings;
|
|
|
|
bindings = void_t();
|
|
|
|
if (event.message == NS_KEY_PRESS) {
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
|
|
|
|
AutoInfallibleTArray<mozilla::CommandInt, 4> singleLine;
|
|
|
|
AutoInfallibleTArray<mozilla::CommandInt, 4> multiLine;
|
|
|
|
AutoInfallibleTArray<mozilla::CommandInt, 4> richText;
|
|
|
|
|
|
|
|
widget->ExecuteNativeKeyBinding(nsIWidget::NativeKeyBindingsForSingleLineEditor,
|
|
|
|
event, DoCommandCallback, &singleLine);
|
|
|
|
widget->ExecuteNativeKeyBinding(nsIWidget::NativeKeyBindingsForMultiLineEditor,
|
|
|
|
event, DoCommandCallback, &multiLine);
|
|
|
|
widget->ExecuteNativeKeyBinding(nsIWidget::NativeKeyBindingsForRichTextEditor,
|
|
|
|
event, DoCommandCallback, &richText);
|
|
|
|
|
|
|
|
if (!singleLine.IsEmpty() || !multiLine.IsEmpty() || !richText.IsEmpty()) {
|
|
|
|
bindings = NativeKeyBinding(singleLine, multiLine, richText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return PBrowserParent::SendRealKeyEvent(event, bindings);
|
2011-06-22 00:32:43 +00:00
|
|
|
}
|
|
|
|
|
2013-09-27 06:20:57 +00:00
|
|
|
bool TabParent::SendRealTouchEvent(WidgetTouchEvent& event)
|
2012-07-16 02:58:43 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-11 20:05:52 +00:00
|
|
|
if (event.message == NS_TOUCH_START) {
|
2013-05-16 05:58:07 +00:00
|
|
|
// Adjust the widget coordinates to be relative to our frame.
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (!frameLoader) {
|
|
|
|
// No frame anymore?
|
|
|
|
sEventCapturer = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
mChildProcessOffsetAtTouchStart =
|
2014-04-01 04:09:23 +00:00
|
|
|
EventStateManager::GetChildProcessOffset(frameLoader, event);
|
2013-05-16 05:58:07 +00:00
|
|
|
|
2012-09-11 20:05:52 +00:00
|
|
|
MOZ_ASSERT((!sEventCapturer && mEventCaptureDepth == 0) ||
|
|
|
|
(sEventCapturer == this && mEventCaptureDepth > 0));
|
|
|
|
// We want to capture all remaining touch events in this series
|
|
|
|
// for fast-path dispatch.
|
|
|
|
sEventCapturer = this;
|
|
|
|
++mEventCaptureDepth;
|
|
|
|
}
|
|
|
|
|
2014-01-27 17:41:12 +00:00
|
|
|
// PresShell::HandleEventInternal adds touches on touch end/cancel. This
|
|
|
|
// confuses remote content and the panning and zooming logic into thinking
|
|
|
|
// that the added touches are part of the touchend/cancel, when actually
|
|
|
|
// they're not.
|
2012-12-20 19:54:00 +00:00
|
|
|
if (event.message == NS_TOUCH_END || event.message == NS_TOUCH_CANCEL) {
|
2014-01-27 17:41:12 +00:00
|
|
|
for (int i = event.touches.Length() - 1; i >= 0; i--) {
|
|
|
|
if (!event.touches[i]->mChanged) {
|
|
|
|
event.touches.RemoveElementAt(i);
|
2012-12-20 19:54:00 +00:00
|
|
|
}
|
2012-08-29 16:06:11 +00:00
|
|
|
}
|
|
|
|
}
|
2012-09-11 20:05:52 +00:00
|
|
|
|
2013-11-13 18:20:31 +00:00
|
|
|
ScrollableLayerGuid guid;
|
2014-05-22 18:49:43 +00:00
|
|
|
nsEventStatus status = MaybeForwardEventToRenderFrame(event, &guid);
|
2013-08-14 14:15:27 +00:00
|
|
|
|
2014-05-22 18:49:43 +00:00
|
|
|
if (status == nsEventStatus_eConsumeNoDefault || mIsDestroyed) {
|
2014-01-15 23:07:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-10 21:59:46 +00:00
|
|
|
MapEventCoordinatesForChildProcess(mChildProcessOffsetAtTouchStart, &event);
|
2013-08-14 14:15:27 +00:00
|
|
|
|
2014-03-10 21:59:46 +00:00
|
|
|
return (event.message == NS_TOUCH_MOVE) ?
|
|
|
|
PBrowserParent::SendRealTouchMoveEvent(event, guid) :
|
|
|
|
PBrowserParent::SendRealTouchEvent(event, guid);
|
2012-07-16 02:58:43 +00:00
|
|
|
}
|
|
|
|
|
2012-09-11 20:05:52 +00:00
|
|
|
/*static*/ TabParent*
|
|
|
|
TabParent::GetEventCapturer()
|
|
|
|
{
|
|
|
|
return sEventCapturer;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-02 03:46:03 +00:00
|
|
|
TabParent::TryCapture(const WidgetGUIEvent& aEvent)
|
2012-09-11 20:05:52 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(sEventCapturer == this && mEventCaptureDepth > 0);
|
|
|
|
|
2014-08-04 05:28:53 +00:00
|
|
|
if (aEvent.mClass != eTouchEventClass) {
|
2012-09-11 20:05:52 +00:00
|
|
|
// Only capture of touch events is implemented, for now.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-18 06:10:23 +00:00
|
|
|
WidgetTouchEvent event(*aEvent.AsTouchEvent());
|
2012-09-11 20:05:52 +00:00
|
|
|
|
|
|
|
bool isTouchPointUp = (event.message == NS_TOUCH_END ||
|
|
|
|
event.message == NS_TOUCH_CANCEL);
|
|
|
|
if (event.message == NS_TOUCH_START || isTouchPointUp) {
|
|
|
|
// Let the DOM see touch start/end events so that its touch-point
|
|
|
|
// state stays consistent.
|
|
|
|
if (isTouchPointUp && 0 == --mEventCaptureDepth) {
|
|
|
|
// All event series are un-captured, don't try to catch any
|
|
|
|
// more.
|
|
|
|
sEventCapturer = nullptr;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-05 11:55:25 +00:00
|
|
|
SendRealTouchEvent(event);
|
|
|
|
return true;
|
2012-09-11 20:05:52 +00:00
|
|
|
}
|
|
|
|
|
2010-02-20 17:05:20 +00:00
|
|
|
bool
|
2010-07-19 18:33:33 +00:00
|
|
|
TabParent::RecvSyncMessage(const nsString& aMessage,
|
2012-08-02 06:02:29 +00:00
|
|
|
const ClonedMessageData& aData,
|
2013-07-10 22:05:39 +00:00
|
|
|
const InfallibleTArray<CpowEntry>& aCpows,
|
2013-11-06 17:21:15 +00:00
|
|
|
const IPC::Principal& aPrincipal,
|
2010-11-09 02:49:00 +00:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal)
|
2010-02-20 17:05:20 +00:00
|
|
|
{
|
2014-06-11 05:44:03 +00:00
|
|
|
// FIXME Permission check for TabParent in Content process
|
2013-11-06 17:21:17 +00:00
|
|
|
nsIPrincipal* principal = aPrincipal;
|
2014-06-14 07:32:24 +00:00
|
|
|
if (Manager()->IsContentParent()) {
|
|
|
|
ContentParent* parent = Manager()->AsContentParent();
|
|
|
|
if (!ContentParent::IgnoreIPCPrincipal() &&
|
|
|
|
parent && principal && !AssertAppPrincipal(parent, principal)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-06 17:21:17 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 16:24:19 +00:00
|
|
|
StructuredCloneData cloneData = ipc::UnpackClonedMessageDataForParent(aData);
|
2014-06-11 05:44:03 +00:00
|
|
|
CpowIdHolder cpows(Manager()->GetCPOWManager(), aCpows);
|
2013-11-06 17:21:15 +00:00
|
|
|
return ReceiveMessage(aMessage, true, &cloneData, &cpows, aPrincipal, aJSONRetVal);
|
2010-02-20 17:05:20 +00:00
|
|
|
}
|
|
|
|
|
2013-10-01 16:15:06 +00:00
|
|
|
bool
|
|
|
|
TabParent::AnswerRpcMessage(const nsString& aMessage,
|
|
|
|
const ClonedMessageData& aData,
|
|
|
|
const InfallibleTArray<CpowEntry>& aCpows,
|
2013-11-06 17:21:15 +00:00
|
|
|
const IPC::Principal& aPrincipal,
|
2013-10-01 16:15:06 +00:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal)
|
|
|
|
{
|
2014-06-11 05:44:03 +00:00
|
|
|
// FIXME Permission check for TabParent in Content process
|
2013-11-06 17:21:17 +00:00
|
|
|
nsIPrincipal* principal = aPrincipal;
|
2014-06-14 07:32:24 +00:00
|
|
|
if (Manager()->IsContentParent()) {
|
|
|
|
ContentParent* parent = Manager()->AsContentParent();
|
|
|
|
if (!ContentParent::IgnoreIPCPrincipal() &&
|
|
|
|
parent && principal && !AssertAppPrincipal(parent, principal)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-06 17:21:17 +00:00
|
|
|
}
|
|
|
|
|
2013-10-01 16:15:06 +00:00
|
|
|
StructuredCloneData cloneData = ipc::UnpackClonedMessageDataForParent(aData);
|
2014-06-11 05:44:03 +00:00
|
|
|
CpowIdHolder cpows(Manager()->GetCPOWManager(), aCpows);
|
2013-11-06 17:21:15 +00:00
|
|
|
return ReceiveMessage(aMessage, true, &cloneData, &cpows, aPrincipal, aJSONRetVal);
|
2013-10-01 16:15:06 +00:00
|
|
|
}
|
|
|
|
|
2010-02-20 17:05:20 +00:00
|
|
|
bool
|
2010-07-19 18:33:33 +00:00
|
|
|
TabParent::RecvAsyncMessage(const nsString& aMessage,
|
2013-07-10 22:05:39 +00:00
|
|
|
const ClonedMessageData& aData,
|
2013-11-06 17:21:15 +00:00
|
|
|
const InfallibleTArray<CpowEntry>& aCpows,
|
|
|
|
const IPC::Principal& aPrincipal)
|
2012-08-02 06:02:29 +00:00
|
|
|
{
|
2014-06-11 05:44:03 +00:00
|
|
|
// FIXME Permission check for TabParent in Content process
|
2013-11-06 17:21:17 +00:00
|
|
|
nsIPrincipal* principal = aPrincipal;
|
2014-06-14 07:32:24 +00:00
|
|
|
if (Manager()->IsContentParent()) {
|
|
|
|
ContentParent* parent = Manager()->AsContentParent();
|
|
|
|
if (!ContentParent::IgnoreIPCPrincipal() &&
|
|
|
|
parent && principal && !AssertAppPrincipal(parent, principal)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-06 17:21:17 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 16:24:19 +00:00
|
|
|
StructuredCloneData cloneData = ipc::UnpackClonedMessageDataForParent(aData);
|
2014-06-11 05:44:03 +00:00
|
|
|
CpowIdHolder cpows(Manager()->GetCPOWManager(), aCpows);
|
2013-11-06 17:21:15 +00:00
|
|
|
return ReceiveMessage(aMessage, false, &cloneData, &cpows, aPrincipal, nullptr);
|
2010-03-29 20:29:45 +00:00
|
|
|
}
|
|
|
|
|
2011-06-22 00:32:43 +00:00
|
|
|
bool
|
2014-05-28 01:12:29 +00:00
|
|
|
TabParent::RecvSetCursor(const uint32_t& aCursor, const bool& aForce)
|
2011-06-22 00:32:43 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
2014-05-28 01:12:29 +00:00
|
|
|
if (aForce) {
|
|
|
|
widget->ClearCachedCursor();
|
|
|
|
}
|
2011-06-22 00:32:43 +00:00
|
|
|
widget->SetCursor((nsCursor) aCursor);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-20 22:17:09 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetBackgroundColor(const nscolor& aColor)
|
|
|
|
{
|
2012-07-20 06:48:27 +00:00
|
|
|
if (RenderFrameParent* frame = GetRenderFrame()) {
|
|
|
|
frame->SetBackgroundColor(aColor);
|
2011-10-20 22:17:09 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-22 20:27:23 +00:00
|
|
|
nsIXULBrowserWindow*
|
|
|
|
TabParent::GetXULBrowserWindow()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIContent> frame = do_QueryInterface(mFrameElement);
|
|
|
|
if (!frame) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocShell> docShell = frame->OwnerDoc()->GetDocShell();
|
|
|
|
if (!docShell) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> treeOwner;
|
|
|
|
docShell->GetTreeOwner(getter_AddRefs(treeOwner));
|
|
|
|
if (!treeOwner) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXULWindow> window = do_GetInterface(treeOwner);
|
|
|
|
if (!window) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXULBrowserWindow> xulBrowserWindow;
|
|
|
|
window->GetXULBrowserWindow(getter_AddRefs(xulBrowserWindow));
|
|
|
|
return xulBrowserWindow;
|
|
|
|
}
|
|
|
|
|
2013-07-25 19:45:31 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetStatus(const uint32_t& aType, const nsString& aStatus)
|
|
|
|
{
|
2014-01-22 20:27:23 +00:00
|
|
|
nsCOMPtr<nsIXULBrowserWindow> xulBrowserWindow = GetXULBrowserWindow();
|
|
|
|
if (!xulBrowserWindow) {
|
|
|
|
return true;
|
2013-07-25 19:45:31 +00:00
|
|
|
}
|
2014-01-22 20:27:23 +00:00
|
|
|
|
|
|
|
switch (aType) {
|
|
|
|
case nsIWebBrowserChrome::STATUS_SCRIPT:
|
|
|
|
xulBrowserWindow->SetJSStatus(aStatus);
|
|
|
|
break;
|
|
|
|
case nsIWebBrowserChrome::STATUS_LINK:
|
|
|
|
xulBrowserWindow->SetOverLink(aStatus, nullptr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvShowTooltip(const uint32_t& aX, const uint32_t& aY, const nsString& aTooltip)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIXULBrowserWindow> xulBrowserWindow = GetXULBrowserWindow();
|
|
|
|
if (!xulBrowserWindow) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
xulBrowserWindow->ShowTooltip(aX, aY, aTooltip);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvHideTooltip()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIXULBrowserWindow> xulBrowserWindow = GetXULBrowserWindow();
|
|
|
|
if (!xulBrowserWindow) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
xulBrowserWindow->HideTooltip();
|
2013-07-25 19:45:31 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 03:28:15 +00:00
|
|
|
bool
|
2011-09-29 06:19:26 +00:00
|
|
|
TabParent::RecvNotifyIMEFocus(const bool& aFocus,
|
2010-10-01 14:17:37 +00:00
|
|
|
nsIMEUpdatePreference* aPreference,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t* aSeqno)
|
2010-09-24 03:28:15 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2012-11-13 13:04:44 +00:00
|
|
|
if (!widget) {
|
2014-02-26 00:48:02 +00:00
|
|
|
*aPreference = nsIMEUpdatePreference();
|
2010-09-24 03:28:15 +00:00
|
|
|
return true;
|
2012-11-13 13:04:44 +00:00
|
|
|
}
|
2010-09-24 03:28:15 +00:00
|
|
|
|
2010-10-01 14:17:37 +00:00
|
|
|
*aSeqno = mIMESeqno;
|
2012-07-30 14:20:58 +00:00
|
|
|
mIMETabParent = aFocus ? this : nullptr;
|
2010-09-24 03:28:15 +00:00
|
|
|
mIMESelectionAnchor = 0;
|
|
|
|
mIMESelectionFocus = 0;
|
2014-02-18 00:00:15 +00:00
|
|
|
widget->NotifyIME(IMENotification(aFocus ? NOTIFY_IME_OF_FOCUS :
|
|
|
|
NOTIFY_IME_OF_BLUR));
|
2010-09-24 03:28:15 +00:00
|
|
|
|
|
|
|
if (aFocus) {
|
2012-11-13 13:04:44 +00:00
|
|
|
*aPreference = widget->GetIMEUpdatePreference();
|
2010-09-24 03:28:15 +00:00
|
|
|
} else {
|
|
|
|
mIMECacheText.Truncate(0);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-08-22 15:56:38 +00:00
|
|
|
TabParent::RecvNotifyIMETextChange(const uint32_t& aStart,
|
|
|
|
const uint32_t& aEnd,
|
2014-02-26 00:48:02 +00:00
|
|
|
const uint32_t& aNewEnd,
|
|
|
|
const bool& aCausedByComposition)
|
2010-09-24 03:28:15 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2014-02-26 00:48:02 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
nsIMEUpdatePreference updatePreference = widget->GetIMEUpdatePreference();
|
|
|
|
NS_ASSERTION(updatePreference.WantTextChange(),
|
2014-01-29 09:32:39 +00:00
|
|
|
"Don't call Send/RecvNotifyIMETextChange without NOTIFY_TEXT_CHANGE");
|
2014-02-26 00:48:02 +00:00
|
|
|
MOZ_ASSERT(!aCausedByComposition ||
|
|
|
|
updatePreference.WantChangesCausedByComposition(),
|
|
|
|
"The widget doesn't want text change notification caused by composition");
|
|
|
|
#endif
|
2014-01-29 09:32:39 +00:00
|
|
|
|
2014-02-18 00:00:15 +00:00
|
|
|
IMENotification notification(NOTIFY_IME_OF_TEXT_CHANGE);
|
|
|
|
notification.mTextChangeData.mStartOffset = aStart;
|
|
|
|
notification.mTextChangeData.mOldEndOffset = aEnd;
|
|
|
|
notification.mTextChangeData.mNewEndOffset = aNewEnd;
|
2014-02-26 00:48:02 +00:00
|
|
|
notification.mTextChangeData.mCausedByComposition = aCausedByComposition;
|
2014-02-18 00:00:15 +00:00
|
|
|
widget->NotifyIME(notification);
|
2010-09-24 03:28:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-07 00:11:11 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvNotifyIMESelectedCompositionRect(const uint32_t& aOffset,
|
2014-01-16 10:04:39 +00:00
|
|
|
const nsIntRect& aRect,
|
|
|
|
const nsIntRect& aCaretRect)
|
2013-11-07 00:11:11 +00:00
|
|
|
{
|
2013-11-22 02:58:20 +00:00
|
|
|
// add rect to cache for another query
|
|
|
|
mIMECompositionRectOffset = aOffset;
|
|
|
|
mIMECompositionRect = aRect;
|
2014-01-16 10:04:39 +00:00
|
|
|
mIMECaretRect = aCaretRect;
|
2013-11-22 02:58:20 +00:00
|
|
|
|
2013-11-07 00:11:11 +00:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
2014-02-18 00:00:15 +00:00
|
|
|
widget->NotifyIME(IMENotification(NOTIFY_IME_OF_COMPOSITION_UPDATE));
|
2013-11-07 00:11:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 03:28:15 +00:00
|
|
|
bool
|
2012-08-22 15:56:38 +00:00
|
|
|
TabParent::RecvNotifyIMESelection(const uint32_t& aSeqno,
|
|
|
|
const uint32_t& aAnchor,
|
2014-02-26 00:48:02 +00:00
|
|
|
const uint32_t& aFocus,
|
|
|
|
const bool& aCausedByComposition)
|
2010-09-24 03:28:15 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2010-10-01 14:17:37 +00:00
|
|
|
if (aSeqno == mIMESeqno) {
|
|
|
|
mIMESelectionAnchor = aAnchor;
|
|
|
|
mIMESelectionFocus = aFocus;
|
2014-02-26 00:48:02 +00:00
|
|
|
const nsIMEUpdatePreference updatePreference =
|
|
|
|
widget->GetIMEUpdatePreference();
|
|
|
|
if (updatePreference.WantSelectionChange() &&
|
|
|
|
(updatePreference.WantChangesCausedByComposition() ||
|
|
|
|
!aCausedByComposition)) {
|
|
|
|
IMENotification notification(NOTIFY_IME_OF_SELECTION_CHANGE);
|
|
|
|
notification.mSelectionChangeData.mCausedByComposition =
|
|
|
|
aCausedByComposition;
|
|
|
|
widget->NotifyIME(notification);
|
2014-01-29 09:32:39 +00:00
|
|
|
}
|
2010-10-01 14:17:37 +00:00
|
|
|
}
|
2010-09-24 03:28:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvNotifyIMETextHint(const nsString& aText)
|
|
|
|
{
|
|
|
|
// Replace our cache with new text
|
|
|
|
mIMECacheText = aText;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-20 22:07:51 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvRequestFocus(const bool& aCanRaise)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFocusManager> fm = nsFocusManager::GetFocusManager();
|
|
|
|
if (!fm) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
|
|
|
if (!content || !content->OwnerDoc()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t flags = nsIFocusManager::FLAG_NOSCROLL;
|
|
|
|
if (aCanRaise)
|
|
|
|
flags |= nsIFocusManager::FLAG_RAISE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMElement> node = do_QueryInterface(mFrameElement);
|
|
|
|
fm->SetFocus(node, flags);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-22 02:58:20 +00:00
|
|
|
nsIntPoint
|
|
|
|
TabParent::GetChildProcessOffset()
|
|
|
|
{
|
|
|
|
// The "toplevel widget" in child processes is always at position
|
|
|
|
// 0,0. Map the event coordinates to match that.
|
|
|
|
|
|
|
|
nsIntPoint offset(0, 0);
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (!frameLoader) {
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
nsIFrame* targetFrame = frameLoader->GetPrimaryFrameOfOwningContent();
|
|
|
|
if (!targetFrame) {
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find out how far we're offset from the nearest widget.
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
nsPoint pt = nsLayoutUtils::GetEventCoordinatesRelativeTo(widget,
|
|
|
|
nsIntPoint(0, 0),
|
|
|
|
targetFrame);
|
|
|
|
|
|
|
|
return LayoutDeviceIntPoint::ToUntyped(LayoutDeviceIntPoint::FromAppUnitsToNearest(
|
|
|
|
pt, targetFrame->PresContext()->AppUnitsPerDevPixel()));
|
|
|
|
}
|
|
|
|
|
2014-03-18 15:16:47 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvReplyKeyEvent(const WidgetKeyboardEvent& event)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mFrameElement, true);
|
|
|
|
|
|
|
|
WidgetKeyboardEvent localEvent(event);
|
|
|
|
// Set mNoCrossProcessBoundaryForwarding to avoid this event from
|
|
|
|
// being infinitely redispatched and forwarded to the child again.
|
|
|
|
localEvent.mFlags.mNoCrossProcessBoundaryForwarding = true;
|
|
|
|
|
|
|
|
// Here we convert the WidgetEvent that we received to an nsIDOMEvent
|
|
|
|
// to be able to dispatch it to the <browser> element as the target element.
|
|
|
|
nsIDocument* doc = mFrameElement->OwnerDoc();
|
|
|
|
nsIPresShell* presShell = doc->GetShell();
|
|
|
|
NS_ENSURE_TRUE(presShell, true);
|
|
|
|
nsPresContext* presContext = presShell->GetPresContext();
|
|
|
|
NS_ENSURE_TRUE(presContext, true);
|
|
|
|
|
|
|
|
EventDispatcher::Dispatch(mFrameElement, presContext, &localEvent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 03:28:15 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
2013-11-22 02:58:20 +00:00
|
|
|
*
|
|
|
|
* For NS_QUERY_TEXT_RECT, fail if cached offset/length aren't equals to input.
|
|
|
|
* Cocoa widget always queries selected offset, so it works on it.
|
2014-01-16 10:04:39 +00:00
|
|
|
*
|
|
|
|
* For NS_QUERY_CARET_RECT, fail if cached offset isn't equals to input
|
2010-09-24 03:28:15 +00:00
|
|
|
*/
|
|
|
|
bool
|
2013-10-01 07:23:00 +00:00
|
|
|
TabParent::HandleQueryContentEvent(WidgetQueryContentEvent& aEvent)
|
2010-09-24 03:28:15 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent.mSucceeded = false;
|
|
|
|
aEvent.mWasAsync = false;
|
2010-09-24 03:28:15 +00:00
|
|
|
aEvent.mReply.mFocusedWidget = nsCOMPtr<nsIWidget>(GetWidget()).get();
|
|
|
|
|
|
|
|
switch (aEvent.message)
|
|
|
|
{
|
|
|
|
case NS_QUERY_SELECTED_TEXT:
|
|
|
|
{
|
2013-01-15 12:22:03 +00:00
|
|
|
aEvent.mReply.mOffset = std::min(mIMESelectionAnchor, mIMESelectionFocus);
|
2010-09-24 03:28:15 +00:00
|
|
|
if (mIMESelectionAnchor == mIMESelectionFocus) {
|
|
|
|
aEvent.mReply.mString.Truncate(0);
|
|
|
|
} else {
|
|
|
|
if (mIMESelectionAnchor > mIMECacheText.Length() ||
|
|
|
|
mIMESelectionFocus > mIMECacheText.Length()) {
|
|
|
|
break;
|
|
|
|
}
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t selLen = mIMESelectionAnchor > mIMESelectionFocus ?
|
2010-09-24 03:28:15 +00:00
|
|
|
mIMESelectionAnchor - mIMESelectionFocus :
|
|
|
|
mIMESelectionFocus - mIMESelectionAnchor;
|
|
|
|
aEvent.mReply.mString = Substring(mIMECacheText,
|
|
|
|
aEvent.mReply.mOffset,
|
|
|
|
selLen);
|
|
|
|
}
|
|
|
|
aEvent.mReply.mReversed = mIMESelectionFocus < mIMESelectionAnchor;
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent.mReply.mHasSelection = true;
|
|
|
|
aEvent.mSucceeded = true;
|
2010-09-24 03:28:15 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_QUERY_TEXT_CONTENT:
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t inputOffset = aEvent.mInput.mOffset,
|
2010-09-24 03:28:15 +00:00
|
|
|
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);
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent.mSucceeded = true;
|
2010-09-24 03:28:15 +00:00
|
|
|
}
|
|
|
|
break;
|
2013-11-22 02:58:20 +00:00
|
|
|
case NS_QUERY_TEXT_RECT:
|
|
|
|
{
|
|
|
|
if (aEvent.mInput.mOffset != mIMECompositionRectOffset ||
|
|
|
|
aEvent.mInput.mLength != 1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
aEvent.mReply.mOffset = mIMECompositionRectOffset;
|
|
|
|
aEvent.mReply.mRect = mIMECompositionRect - GetChildProcessOffset();
|
|
|
|
aEvent.mSucceeded = true;
|
|
|
|
}
|
|
|
|
break;
|
2014-01-16 10:04:39 +00:00
|
|
|
case NS_QUERY_CARET_RECT:
|
|
|
|
{
|
|
|
|
if (aEvent.mInput.mOffset != mIMECompositionRectOffset) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
aEvent.mReply.mOffset = mIMECompositionRectOffset;
|
|
|
|
aEvent.mReply.mRect = mIMECaretRect - GetChildProcessOffset();
|
|
|
|
aEvent.mSucceeded = true;
|
|
|
|
}
|
|
|
|
break;
|
2010-09-24 03:28:15 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 03:34:26 +00:00
|
|
|
bool
|
2013-10-01 07:23:00 +00:00
|
|
|
TabParent::SendCompositionEvent(WidgetCompositionEvent& event)
|
2010-09-24 03:34:26 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-09-22 09:17:40 +00:00
|
|
|
mIMEComposing = event.message != NS_COMPOSITION_END;
|
2013-01-15 12:22:03 +00:00
|
|
|
mIMECompositionStart = std::min(mIMESelectionAnchor, mIMESelectionFocus);
|
2010-09-24 03:34:26 +00:00
|
|
|
if (mIMECompositionEnding)
|
|
|
|
return true;
|
2014-01-15 14:41:39 +00:00
|
|
|
event.mSeqno = ++mIMESeqno;
|
2010-09-24 03:34:26 +00:00
|
|
|
return PBrowserParent::SendCompositionEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-09-24 03:28:15 +00:00
|
|
|
/**
|
2013-03-06 06:14:31 +00:00
|
|
|
* During REQUEST_TO_COMMIT_COMPOSITION or REQUEST_TO_CANCEL_COMPOSITION,
|
|
|
|
* widget usually sends a NS_TEXT_TEXT event to finalize or clear the
|
|
|
|
* composition, respectively
|
2010-09-24 03:28:15 +00:00
|
|
|
*
|
|
|
|
* Because the event will not reach content in time, we intercept it
|
|
|
|
* here and pass the text as the EndIMEComposition return value
|
|
|
|
*/
|
|
|
|
bool
|
2013-10-01 07:22:59 +00:00
|
|
|
TabParent::SendTextEvent(WidgetTextEvent& event)
|
2010-09-24 03:28:15 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-09-24 03:28:15 +00:00
|
|
|
if (mIMECompositionEnding) {
|
|
|
|
mIMECompositionText = event.theText;
|
|
|
|
return true;
|
|
|
|
}
|
2010-09-24 03:34:26 +00:00
|
|
|
|
|
|
|
// We must be able to simulate the selection because
|
|
|
|
// we might not receive selection updates in time
|
|
|
|
if (!mIMEComposing) {
|
2013-01-15 12:22:03 +00:00
|
|
|
mIMECompositionStart = std::min(mIMESelectionAnchor, mIMESelectionFocus);
|
2010-09-24 03:34:26 +00:00
|
|
|
}
|
|
|
|
mIMESelectionAnchor = mIMESelectionFocus =
|
|
|
|
mIMECompositionStart + event.theText.Length();
|
|
|
|
|
2014-01-15 14:41:39 +00:00
|
|
|
event.mSeqno = ++mIMESeqno;
|
2010-09-24 03:28:15 +00:00
|
|
|
return PBrowserParent::SendTextEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-09-24 03:34:26 +00:00
|
|
|
bool
|
2013-10-01 07:23:01 +00:00
|
|
|
TabParent::SendSelectionEvent(WidgetSelectionEvent& event)
|
2010-09-24 03:34:26 +00:00
|
|
|
{
|
2012-11-10 06:09:24 +00:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-09-24 03:34:26 +00:00
|
|
|
mIMESelectionAnchor = event.mOffset + (event.mReversed ? event.mLength : 0);
|
|
|
|
mIMESelectionFocus = event.mOffset + (!event.mReversed ? event.mLength : 0);
|
2014-01-15 14:41:39 +00:00
|
|
|
event.mSeqno = ++mIMESeqno;
|
2010-09-24 03:34:26 +00:00
|
|
|
return PBrowserParent::SendSelectionEvent(event);
|
|
|
|
}
|
|
|
|
|
2012-06-23 01:27:30 +00:00
|
|
|
/*static*/ TabParent*
|
|
|
|
TabParent::GetFrom(nsFrameLoader* aFrameLoader)
|
|
|
|
{
|
|
|
|
if (!aFrameLoader) {
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2012-06-23 01:27:30 +00:00
|
|
|
}
|
|
|
|
PBrowserParent* remoteBrowser = aFrameLoader->GetRemoteBrowser();
|
|
|
|
return static_cast<TabParent*>(remoteBrowser);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/ TabParent*
|
|
|
|
TabParent::GetFrom(nsIContent* aContent)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> loaderOwner = do_QueryInterface(aContent);
|
|
|
|
if (!loaderOwner) {
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2012-06-23 01:27:30 +00:00
|
|
|
}
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = loaderOwner->GetFrameLoader();
|
|
|
|
return GetFrom(frameLoader);
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:48:27 +00:00
|
|
|
RenderFrameParent*
|
|
|
|
TabParent::GetRenderFrame()
|
|
|
|
{
|
|
|
|
if (ManagedPRenderFrameParent().IsEmpty()) {
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2012-07-20 06:48:27 +00:00
|
|
|
}
|
|
|
|
return static_cast<RenderFrameParent*>(ManagedPRenderFrameParent()[0]);
|
|
|
|
}
|
|
|
|
|
2010-09-24 03:28:15 +00:00
|
|
|
bool
|
2011-09-29 06:19:26 +00:00
|
|
|
TabParent::RecvEndIMEComposition(const bool& aCancel,
|
2010-09-24 03:28:15 +00:00
|
|
|
nsString* aComposition)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
mIMECompositionEnding = true;
|
2010-09-24 03:28:15 +00:00
|
|
|
|
2014-02-18 00:00:15 +00:00
|
|
|
widget->NotifyIME(IMENotification(aCancel ? REQUEST_TO_CANCEL_COMPOSITION :
|
|
|
|
REQUEST_TO_COMMIT_COMPOSITION));
|
2010-09-24 03:28:15 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
mIMECompositionEnding = false;
|
2010-09-24 03:28:15 +00:00
|
|
|
*aComposition = mIMECompositionText;
|
|
|
|
mIMECompositionText.Truncate(0);
|
2010-09-24 03:28:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-08-22 15:56:38 +00:00
|
|
|
TabParent::RecvGetInputContext(int32_t* aIMEEnabled,
|
2012-10-26 23:35:20 +00:00
|
|
|
int32_t* aIMEOpen,
|
2012-10-30 01:58:29 +00:00
|
|
|
intptr_t* aNativeIMEContext)
|
2010-09-24 03:28:15 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2011-06-29 21:24:47 +00:00
|
|
|
if (!widget) {
|
2011-11-27 11:51:53 +00:00
|
|
|
*aIMEEnabled = IMEState::DISABLED;
|
|
|
|
*aIMEOpen = IMEState::OPEN_STATE_NOT_SUPPORTED;
|
2012-10-26 23:35:20 +00:00
|
|
|
*aNativeIMEContext = 0;
|
2010-11-23 06:48:45 +00:00
|
|
|
return true;
|
2011-06-29 21:24:47 +00:00
|
|
|
}
|
2010-11-23 06:48:45 +00:00
|
|
|
|
2011-11-27 11:51:52 +00:00
|
|
|
InputContext context = widget->GetInputContext();
|
2012-08-22 15:56:38 +00:00
|
|
|
*aIMEEnabled = static_cast<int32_t>(context.mIMEState.mEnabled);
|
|
|
|
*aIMEOpen = static_cast<int32_t>(context.mIMEState.mOpen);
|
2012-10-30 01:58:29 +00:00
|
|
|
*aNativeIMEContext = reinterpret_cast<intptr_t>(context.mNativeIMEContext);
|
2010-09-24 03:28:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-08-22 15:56:38 +00:00
|
|
|
TabParent::RecvSetInputContext(const int32_t& aIMEEnabled,
|
|
|
|
const int32_t& aIMEOpen,
|
2011-11-27 11:51:52 +00:00
|
|
|
const nsString& aType,
|
2012-08-27 02:16:22 +00:00
|
|
|
const nsString& aInputmode,
|
2011-11-27 11:51:52 +00:00
|
|
|
const nsString& aActionHint,
|
2012-08-22 15:56:38 +00:00
|
|
|
const int32_t& aCause,
|
|
|
|
const int32_t& aFocusChange)
|
2010-09-24 03:28:15 +00:00
|
|
|
{
|
2011-05-20 18:44:09 +00:00
|
|
|
// mIMETabParent (which is actually static) tracks which if any TabParent has IMEFocus
|
2011-11-27 11:51:53 +00:00
|
|
|
// When the input mode is set to anything but IMEState::DISABLED,
|
|
|
|
// mIMETabParent should be set to this
|
|
|
|
mIMETabParent =
|
2012-08-22 15:56:38 +00:00
|
|
|
aIMEEnabled != static_cast<int32_t>(IMEState::DISABLED) ? this : nullptr;
|
2010-09-24 03:28:15 +00:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2010-11-23 06:48:03 +00:00
|
|
|
if (!widget || !AllowContentIME())
|
|
|
|
return true;
|
|
|
|
|
2011-11-27 11:51:52 +00:00
|
|
|
InputContext context;
|
2011-11-27 11:51:53 +00:00
|
|
|
context.mIMEState.mEnabled = static_cast<IMEState::Enabled>(aIMEEnabled);
|
|
|
|
context.mIMEState.mOpen = static_cast<IMEState::Open>(aIMEOpen);
|
2010-11-23 06:48:03 +00:00
|
|
|
context.mHTMLInputType.Assign(aType);
|
2012-08-27 02:16:22 +00:00
|
|
|
context.mHTMLInputInputmode.Assign(aInputmode);
|
2011-11-27 11:51:52 +00:00
|
|
|
context.mActionHint.Assign(aActionHint);
|
|
|
|
InputContextAction action(
|
|
|
|
static_cast<InputContextAction::Cause>(aCause),
|
|
|
|
static_cast<InputContextAction::FocusChange>(aFocusChange));
|
|
|
|
widget->SetInputContext(context, action);
|
2010-11-23 06:48:03 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
|
|
|
if (!observerService)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
nsAutoString state;
|
2011-11-27 11:51:53 +00:00
|
|
|
state.AppendInt(aIMEEnabled);
|
2012-07-30 14:20:58 +00:00
|
|
|
observerService->NotifyObservers(nullptr, "ime-enabled-state-changed", state.get());
|
2010-10-18 16:37:00 +00:00
|
|
|
|
2010-09-24 03:28:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-04 21:50:42 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvIsParentWindowMainWidgetVisible(bool* aIsVisible)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIContent> frame = do_QueryInterface(mFrameElement);
|
|
|
|
if (!frame)
|
|
|
|
return true;
|
|
|
|
nsCOMPtr<nsIDOMWindowUtils> windowUtils =
|
|
|
|
do_QueryInterface(frame->OwnerDoc()->GetWindow());
|
|
|
|
nsresult rv = windowUtils->GetIsParentWindowMainWidgetVisible(aIsVisible);
|
|
|
|
return NS_SUCCEEDED(rv);
|
|
|
|
}
|
|
|
|
|
2010-12-03 01:24:04 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetDPI(float* aValue)
|
|
|
|
{
|
2013-05-01 23:06:19 +00:00
|
|
|
TryCacheDPIAndScale();
|
2012-05-08 16:20:35 +00:00
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(mDPI > 0,
|
2010-12-09 18:57:05 +00:00
|
|
|
"Must not ask for DPI before OwnerElement is received!");
|
|
|
|
*aValue = mDPI;
|
2010-12-03 01:24:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-01 23:06:19 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetDefaultScale(double* aValue)
|
|
|
|
{
|
|
|
|
TryCacheDPIAndScale();
|
|
|
|
|
2013-09-18 00:45:19 +00:00
|
|
|
NS_ABORT_IF_FALSE(mDefaultScale.scale > 0,
|
2013-05-01 23:06:19 +00:00
|
|
|
"Must not ask for scale before OwnerElement is received!");
|
2013-09-18 00:45:19 +00:00
|
|
|
*aValue = mDefaultScale.scale;
|
2013-05-01 23:06:19 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-07-22 00:49:35 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetWidgetNativeData(WindowsHandle* aValue)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
|
|
|
if (content) {
|
2011-10-18 11:19:44 +00:00
|
|
|
nsIPresShell* shell = content->OwnerDoc()->GetShell();
|
|
|
|
if (shell) {
|
2013-01-05 03:12:24 +00:00
|
|
|
nsViewManager* vm = shell->GetViewManager();
|
2011-10-18 11:19:44 +00:00
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
vm->GetRootWidget(getter_AddRefs(widget));
|
|
|
|
if (widget) {
|
|
|
|
*aValue = reinterpret_cast<WindowsHandle>(
|
|
|
|
widget->GetNativeData(NS_NATIVE_SHAREABLE_WINDOW));
|
|
|
|
return true;
|
2011-07-22 00:49:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-03-29 20:29:45 +00:00
|
|
|
bool
|
|
|
|
TabParent::ReceiveMessage(const nsString& aMessage,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aSync,
|
2012-08-02 06:02:29 +00:00
|
|
|
const StructuredCloneData* aCloneData,
|
2013-07-10 22:05:39 +00:00
|
|
|
CpowHolder* aCpows,
|
2013-11-06 17:21:15 +00:00
|
|
|
nsIPrincipal* aPrincipal,
|
2010-11-09 02:49:00 +00:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal)
|
2010-02-20 17:05:20 +00:00
|
|
|
{
|
2010-08-05 22:11:23 +00:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (frameLoader && frameLoader->GetFrameMessageManager()) {
|
2011-06-16 18:21:08 +00:00
|
|
|
nsRefPtr<nsFrameMessageManager> manager =
|
|
|
|
frameLoader->GetFrameMessageManager();
|
2010-08-05 22:11:23 +00:00
|
|
|
|
|
|
|
manager->ReceiveMessage(mFrameElement,
|
|
|
|
aMessage,
|
|
|
|
aSync,
|
2012-08-02 06:02:29 +00:00
|
|
|
aCloneData,
|
2013-07-10 22:05:39 +00:00
|
|
|
aCpows,
|
2013-11-06 17:21:15 +00:00
|
|
|
aPrincipal,
|
2010-08-05 22:11:23 +00:00
|
|
|
aJSONRetVal);
|
2010-02-20 17:05:20 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
PIndexedDBParent*
|
2013-09-11 04:18:36 +00:00
|
|
|
TabParent::AllocPIndexedDBParent(
|
|
|
|
const nsCString& aGroup,
|
|
|
|
const nsCString& aASCIIOrigin, bool* /* aAllowed */)
|
2012-06-01 17:21:12 +00:00
|
|
|
{
|
2012-10-25 17:12:14 +00:00
|
|
|
return new IndexedDBParent(this);
|
2012-06-01 17:21:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 15:48:39 +00:00
|
|
|
TabParent::DeallocPIndexedDBParent(PIndexedDBParent* aActor)
|
2012-06-01 17:21:12 +00:00
|
|
|
{
|
|
|
|
delete aActor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvPIndexedDBConstructor(PIndexedDBParent* aActor,
|
2013-09-11 04:18:36 +00:00
|
|
|
const nsCString& aGroup,
|
2012-06-01 17:21:12 +00:00
|
|
|
const nsCString& aASCIIOrigin,
|
|
|
|
bool* aAllowed)
|
|
|
|
{
|
|
|
|
nsRefPtr<IndexedDatabaseManager> mgr = IndexedDatabaseManager::GetOrCreate();
|
|
|
|
NS_ENSURE_TRUE(mgr, false);
|
|
|
|
|
|
|
|
if (!IndexedDatabaseManager::IsMainProcess()) {
|
|
|
|
NS_RUNTIMEABORT("Not supported yet!");
|
|
|
|
}
|
|
|
|
|
2012-10-23 16:31:19 +00:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
// XXXbent Need to make sure we have a whitelist for chrome databases!
|
|
|
|
|
2012-11-10 18:32:37 +00:00
|
|
|
// Verify that the child is requesting to access a database it's allowed to
|
|
|
|
// see. (aASCIIOrigin here specifies a TabContext + a website origin, and
|
|
|
|
// we're checking that the TabContext may access it.)
|
|
|
|
//
|
|
|
|
// We have to check IsBrowserOrApp() because TabContextMayAccessOrigin will
|
|
|
|
// fail if we're not a browser-or-app, since aASCIIOrigin will be a plain URI,
|
|
|
|
// but TabContextMayAccessOrigin will construct an extended origin using
|
|
|
|
// app-id 0. Note that as written below, we allow a non browser-or-app child
|
|
|
|
// to read any database. That's a security hole, but we don't ship a
|
|
|
|
// configuration which creates non browser-or-app children, so it's not a big
|
|
|
|
// deal.
|
|
|
|
if (!aASCIIOrigin.EqualsLiteral("chrome") && IsBrowserOrApp() &&
|
|
|
|
!IndexedDatabaseManager::TabContextMayAccessOrigin(*this, aASCIIOrigin)) {
|
|
|
|
|
|
|
|
NS_WARNING("App attempted to open databases that it does not have "
|
|
|
|
"permission to access!");
|
|
|
|
return false;
|
2012-10-23 16:31:19 +00:00
|
|
|
}
|
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
nsCOMPtr<nsINode> node = do_QueryInterface(GetOwnerElement());
|
|
|
|
NS_ENSURE_TRUE(node, false);
|
|
|
|
|
|
|
|
nsIDocument* doc = node->GetOwnerDocument();
|
|
|
|
NS_ENSURE_TRUE(doc, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsPIDOMWindow> window = doc->GetInnerWindow();
|
|
|
|
NS_ENSURE_TRUE(window, false);
|
|
|
|
|
2013-04-29 15:34:16 +00:00
|
|
|
// Let's do a current inner check to see if the inner is active or is in
|
|
|
|
// bf cache, and bail out if it's not active.
|
|
|
|
nsCOMPtr<nsPIDOMWindow> outer = doc->GetWindow();
|
|
|
|
if (!outer || outer->GetCurrentInnerWindow() != window) {
|
|
|
|
*aAllowed = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-11 05:44:03 +00:00
|
|
|
NS_ASSERTION(Manager(), "Null manager?!");
|
2012-08-02 06:02:29 +00:00
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
nsRefPtr<IDBFactory> factory;
|
2014-06-11 05:44:08 +00:00
|
|
|
rv = IDBFactory::Create(window, aGroup, aASCIIOrigin, Manager(),
|
2012-10-23 16:31:19 +00:00
|
|
|
getter_AddRefs(factory));
|
2012-06-01 17:21:12 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
|
|
|
if (!factory) {
|
|
|
|
*aAllowed = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
IndexedDBParent* actor = static_cast<IndexedDBParent*>(aActor);
|
|
|
|
actor->mFactory = factory;
|
|
|
|
actor->mASCIIOrigin = aASCIIOrigin;
|
|
|
|
|
|
|
|
*aAllowed = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-06-24 22:20:42 +00:00
|
|
|
// nsIAuthPromptProvider
|
|
|
|
|
|
|
|
// This method is largely copied from nsDocShell::GetAuthPrompt
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
TabParent::GetAuthPrompt(uint32_t aPromptReason, const nsIID& iid,
|
2010-06-24 22:20:42 +00:00
|
|
|
void** aResult)
|
|
|
|
{
|
|
|
|
// we're either allowing auth, or it's a proxy request
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIPromptFactory> wwatch =
|
|
|
|
do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> window;
|
|
|
|
nsCOMPtr<nsIContent> frame = do_QueryInterface(mFrameElement);
|
|
|
|
if (frame)
|
2011-10-18 10:53:36 +00:00
|
|
|
window = do_QueryInterface(frame->OwnerDoc()->GetWindow());
|
2010-06-24 22:20:42 +00:00
|
|
|
|
|
|
|
// 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<void**>(aResult));
|
|
|
|
}
|
|
|
|
|
2014-02-23 20:19:43 +00:00
|
|
|
PColorPickerParent*
|
|
|
|
TabParent::AllocPColorPickerParent(const nsString& aTitle,
|
|
|
|
const nsString& aInitialColor)
|
|
|
|
{
|
|
|
|
return new ColorPickerParent(aTitle, aInitialColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPColorPickerParent(PColorPickerParent* actor)
|
|
|
|
{
|
|
|
|
delete actor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-15 21:10:39 +00:00
|
|
|
PRenderFrameParent*
|
2014-05-08 14:04:00 +00:00
|
|
|
TabParent::AllocPRenderFrameParent(ScrollingBehavior* aScrolling,
|
|
|
|
TextureFactoryIdentifier* aTextureFactoryIdentifier,
|
|
|
|
uint64_t* aLayersId, bool* aSuccess)
|
2014-01-15 21:10:39 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(ManagedPRenderFrameParent().IsEmpty());
|
2014-05-08 14:04:00 +00:00
|
|
|
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
*aScrolling = UseAsyncPanZoom() ? ASYNC_PAN_ZOOM : DEFAULT_SCROLLING;
|
|
|
|
return new RenderFrameParent(frameLoader,
|
|
|
|
*aScrolling,
|
|
|
|
aTextureFactoryIdentifier, aLayersId,
|
|
|
|
aSuccess);
|
2010-08-20 23:24:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 15:48:39 +00:00
|
|
|
TabParent::DeallocPRenderFrameParent(PRenderFrameParent* aFrame)
|
2010-08-20 23:24:41 +00:00
|
|
|
{
|
|
|
|
delete aFrame;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-10-20 17:12:32 +00:00
|
|
|
mozilla::docshell::POfflineCacheUpdateParent*
|
2013-07-08 15:48:39 +00:00
|
|
|
TabParent::AllocPOfflineCacheUpdateParent(const URIParams& aManifestURI,
|
|
|
|
const URIParams& aDocumentURI,
|
2014-01-15 20:20:33 +00:00
|
|
|
const bool& aStickDocument)
|
2010-10-20 17:12:32 +00:00
|
|
|
{
|
|
|
|
nsRefPtr<mozilla::docshell::OfflineCacheUpdateParent> update =
|
2012-12-29 09:02:16 +00:00
|
|
|
new mozilla::docshell::OfflineCacheUpdateParent(OwnOrContainingAppId(),
|
|
|
|
IsBrowserElement());
|
2014-01-15 20:20:33 +00:00
|
|
|
// Use this reference as the IPDL reference.
|
2014-03-15 19:00:15 +00:00
|
|
|
return update.forget().take();
|
2014-01-15 20:20:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvPOfflineCacheUpdateConstructor(POfflineCacheUpdateParent* aActor,
|
|
|
|
const URIParams& aManifestURI,
|
|
|
|
const URIParams& aDocumentURI,
|
|
|
|
const bool& aStickDocument)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aActor);
|
2010-10-20 17:12:32 +00:00
|
|
|
|
2014-01-15 20:20:33 +00:00
|
|
|
nsRefPtr<mozilla::docshell::OfflineCacheUpdateParent> update =
|
|
|
|
static_cast<mozilla::docshell::OfflineCacheUpdateParent*>(aActor);
|
|
|
|
|
|
|
|
nsresult rv = update->Schedule(aManifestURI, aDocumentURI, aStickDocument);
|
|
|
|
if (NS_FAILED(rv) && !IsDestroyed()) {
|
|
|
|
// Inform the child of failure.
|
|
|
|
unused << update->SendFinish(false, false);
|
2013-12-23 02:31:15 +00:00
|
|
|
}
|
2010-10-20 17:12:32 +00:00
|
|
|
|
2014-01-15 20:20:33 +00:00
|
|
|
return true;
|
2010-10-20 17:12:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2014-01-15 20:20:33 +00:00
|
|
|
TabParent::DeallocPOfflineCacheUpdateParent(POfflineCacheUpdateParent* aActor)
|
2010-10-20 17:12:32 +00:00
|
|
|
{
|
2014-01-15 20:20:33 +00:00
|
|
|
// Reclaim the IPDL reference.
|
|
|
|
nsRefPtr<mozilla::docshell::OfflineCacheUpdateParent> update =
|
|
|
|
dont_AddRef(
|
|
|
|
static_cast<mozilla::docshell::OfflineCacheUpdateParent*>(aActor));
|
2010-10-20 17:12:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-19 22:15:59 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetOfflinePermission(const IPC::Principal& aPrincipal)
|
|
|
|
{
|
|
|
|
nsIPrincipal* principal = aPrincipal;
|
|
|
|
nsContentUtils::MaybeAllowOfflineAppByDefault(principal, nullptr);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2010-10-19 08:21:31 +00:00
|
|
|
TabParent::AllowContentIME()
|
|
|
|
{
|
|
|
|
nsFocusManager* fm = nsFocusManager::GetFocusManager();
|
2011-10-17 14:59:28 +00:00
|
|
|
NS_ENSURE_TRUE(fm, false);
|
2010-10-19 08:21:31 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> focusedContent = fm->GetFocusedContent();
|
|
|
|
if (focusedContent && focusedContent->IsEditable())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-10-19 08:21:31 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2010-10-19 08:21:31 +00:00
|
|
|
}
|
|
|
|
|
2010-08-05 22:11:23 +00:00
|
|
|
already_AddRefed<nsFrameLoader>
|
|
|
|
TabParent::GetFrameLoader() const
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> frameLoaderOwner = do_QueryInterface(mFrameElement);
|
2012-07-30 14:20:58 +00:00
|
|
|
return frameLoaderOwner ? frameLoaderOwner->GetFrameLoader() : nullptr;
|
2010-08-05 22:11:23 +00:00
|
|
|
}
|
|
|
|
|
2012-04-25 16:35:58 +00:00
|
|
|
void
|
2013-05-01 23:06:19 +00:00
|
|
|
TabParent::TryCacheDPIAndScale()
|
2012-04-25 16:35:58 +00:00
|
|
|
{
|
|
|
|
if (mDPI > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2012-05-08 16:20:35 +00:00
|
|
|
|
|
|
|
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.
|
2013-07-23 23:39:17 +00:00
|
|
|
widget = nsContentUtils::WidgetForDocument(mFrameElement->OwnerDoc());
|
2012-05-08 16:20:35 +00:00
|
|
|
}
|
|
|
|
|
2012-04-25 16:35:58 +00:00
|
|
|
if (widget) {
|
|
|
|
mDPI = widget->GetDPI();
|
2013-05-01 23:06:19 +00:00
|
|
|
mDefaultScale = widget->GetDefaultScale();
|
2012-04-25 16:35:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-24 03:28:15 +00:00
|
|
|
already_AddRefed<nsIWidget>
|
|
|
|
TabParent::GetWidget() const
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
|
|
|
if (!content)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2010-09-24 03:28:15 +00:00
|
|
|
|
|
|
|
nsIFrame *frame = content->GetPrimaryFrame();
|
|
|
|
if (!frame)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2010-09-24 03:28:15 +00:00
|
|
|
|
2012-04-25 16:35:58 +00:00
|
|
|
nsCOMPtr<nsIWidget> widget = frame->GetNearestWidget();
|
|
|
|
return widget.forget();
|
2010-09-24 03:28:15 +00:00
|
|
|
}
|
|
|
|
|
2012-07-20 06:48:27 +00:00
|
|
|
bool
|
|
|
|
TabParent::UseAsyncPanZoom()
|
|
|
|
{
|
2014-06-14 02:18:27 +00:00
|
|
|
bool usingOffMainThreadCompositing = !!CompositorParent::CompositorLoop();
|
|
|
|
return (usingOffMainThreadCompositing && gfxPrefs::AsyncPanZoomEnabled() &&
|
|
|
|
GetScrollingBehavior() == ASYNC_PAN_ZOOM);
|
2012-07-20 06:48:27 +00:00
|
|
|
}
|
|
|
|
|
2014-05-22 18:49:43 +00:00
|
|
|
nsEventStatus
|
2014-03-10 21:59:46 +00:00
|
|
|
TabParent::MaybeForwardEventToRenderFrame(WidgetInputEvent& aEvent,
|
|
|
|
ScrollableLayerGuid* aOutTargetGuid)
|
2012-07-20 06:48:27 +00:00
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
2014-05-22 18:49:43 +00:00
|
|
|
return rfp->NotifyInputEvent(aEvent, aOutTargetGuid);
|
2012-07-20 06:48:27 +00:00
|
|
|
}
|
2014-05-22 18:49:43 +00:00
|
|
|
return nsEventStatus_eIgnore;
|
2012-07-20 06:48:27 +00:00
|
|
|
}
|
|
|
|
|
2012-06-12 22:01:25 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvBrowserFrameOpenWindow(PBrowserParent* aOpener,
|
|
|
|
const nsString& aURL,
|
|
|
|
const nsString& aName,
|
|
|
|
const nsString& aFeatures,
|
|
|
|
bool* aOutWindowOpened)
|
|
|
|
{
|
2013-09-10 04:18:46 +00:00
|
|
|
BrowserElementParent::OpenWindowResult opened =
|
2012-06-12 22:01:25 +00:00
|
|
|
BrowserElementParent::OpenWindowOOP(static_cast<TabParent*>(aOpener),
|
|
|
|
this, aURL, aName, aFeatures);
|
2013-09-10 04:18:46 +00:00
|
|
|
*aOutWindowOpened = (opened != BrowserElementParent::OPEN_WINDOW_CANCELLED);
|
2012-06-12 22:01:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-29 02:16:36 +00:00
|
|
|
bool
|
2014-05-08 14:04:00 +00:00
|
|
|
TabParent::RecvPRenderFrameConstructor(PRenderFrameParent* aActor,
|
|
|
|
ScrollingBehavior* aScrolling,
|
|
|
|
TextureFactoryIdentifier* aFactoryIdentifier,
|
|
|
|
uint64_t* aLayersId,
|
|
|
|
bool* aSuccess)
|
2012-09-29 02:16:36 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-09 04:39:02 +00:00
|
|
|
bool
|
2013-11-13 18:20:30 +00:00
|
|
|
TabParent::RecvZoomToRect(const uint32_t& aPresShellId,
|
|
|
|
const ViewID& aViewId,
|
|
|
|
const CSSRect& aRect)
|
2012-08-09 04:39:02 +00:00
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
2013-11-13 18:20:30 +00:00
|
|
|
rfp->ZoomToRect(aPresShellId, aViewId, aRect);
|
2012-08-09 04:39:02 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-29 02:18:18 +00:00
|
|
|
bool
|
2013-11-14 17:35:41 +00:00
|
|
|
TabParent::RecvUpdateZoomConstraints(const uint32_t& aPresShellId,
|
|
|
|
const ViewID& aViewId,
|
2013-11-09 00:07:00 +00:00
|
|
|
const bool& aIsRoot,
|
2014-01-06 18:26:44 +00:00
|
|
|
const ZoomConstraints& aConstraints)
|
2012-09-29 02:18:18 +00:00
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
2014-01-06 18:26:44 +00:00
|
|
|
rfp->UpdateZoomConstraints(aPresShellId, aViewId, aIsRoot, aConstraints);
|
2012-09-29 02:18:18 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-22 04:37:06 +00:00
|
|
|
bool
|
2013-11-13 18:20:31 +00:00
|
|
|
TabParent::RecvContentReceivedTouch(const ScrollableLayerGuid& aGuid,
|
|
|
|
const bool& aPreventDefault)
|
2012-08-22 04:37:06 +00:00
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
2013-11-13 18:20:31 +00:00
|
|
|
rfp->ContentReceivedTouch(aGuid, aPreventDefault);
|
2012-08-22 04:37:06 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-11 01:10:57 +00:00
|
|
|
already_AddRefed<nsILoadContext>
|
|
|
|
TabParent::GetLoadContext()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsILoadContext> loadContext;
|
|
|
|
if (mLoadContext) {
|
|
|
|
loadContext = mLoadContext;
|
|
|
|
} else {
|
|
|
|
loadContext = new LoadContext(GetOwnerElement(),
|
|
|
|
OwnOrContainingAppId(),
|
|
|
|
true /* aIsContent */,
|
|
|
|
mChromeFlags & nsIWebBrowserChrome::CHROME_PRIVATE_WINDOW,
|
2014-02-11 17:00:54 +00:00
|
|
|
mChromeFlags & nsIWebBrowserChrome::CHROME_REMOTE_WINDOW,
|
2014-01-11 01:10:57 +00:00
|
|
|
IsBrowserElement());
|
|
|
|
mLoadContext = loadContext;
|
|
|
|
}
|
|
|
|
return loadContext.forget();
|
|
|
|
}
|
|
|
|
|
2014-02-15 00:45:44 +00:00
|
|
|
/* Be careful if you call this method while proceding a real touch event. For
|
|
|
|
* example sending a touchstart during a real touchend may results into
|
|
|
|
* a busted mEventCaptureDepth and following touch events may not do what you
|
|
|
|
* expect.
|
|
|
|
*/
|
2014-01-24 09:02:23 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::InjectTouchEvent(const nsAString& aType,
|
|
|
|
uint32_t* aIdentifiers,
|
|
|
|
int32_t* aXs,
|
|
|
|
int32_t* aYs,
|
|
|
|
uint32_t* aRxs,
|
|
|
|
uint32_t* aRys,
|
|
|
|
float* aRotationAngles,
|
|
|
|
float* aForces,
|
|
|
|
uint32_t aCount,
|
|
|
|
int32_t aModifiers)
|
|
|
|
{
|
|
|
|
uint32_t msg;
|
2014-08-04 05:28:53 +00:00
|
|
|
nsContentUtils::GetEventIdAndAtom(aType, eTouchEventClass, &msg);
|
2014-01-24 09:02:23 +00:00
|
|
|
if (msg != NS_TOUCH_START && msg != NS_TOUCH_MOVE &&
|
|
|
|
msg != NS_TOUCH_END && msg != NS_TOUCH_CANCEL) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2014-01-28 11:42:44 +00:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
WidgetTouchEvent event(true, msg, widget);
|
2014-01-24 09:02:23 +00:00
|
|
|
event.modifiers = aModifiers;
|
|
|
|
event.time = PR_IntervalNow();
|
|
|
|
|
2014-06-02 09:34:53 +00:00
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
|
|
|
if (!content || !content->OwnerDoc()) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIDocument* doc = content->OwnerDoc();
|
|
|
|
if (!doc || !doc->GetShell()) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
nsPresContext* presContext = doc->GetShell()->GetPresContext();
|
|
|
|
|
2014-01-24 09:02:23 +00:00
|
|
|
event.touches.SetCapacity(aCount);
|
|
|
|
for (uint32_t i = 0; i < aCount; ++i) {
|
2014-06-02 09:34:53 +00:00
|
|
|
LayoutDeviceIntPoint pt =
|
|
|
|
LayoutDeviceIntPoint::FromAppUnitsRounded(
|
|
|
|
CSSPoint::ToAppUnits(CSSPoint(aXs[i], aYs[i])),
|
|
|
|
presContext->AppUnitsPerDevPixel());
|
|
|
|
|
2014-01-24 09:02:23 +00:00
|
|
|
nsRefPtr<Touch> t = new Touch(aIdentifiers[i],
|
2014-06-02 09:34:53 +00:00
|
|
|
LayoutDeviceIntPoint::ToUntyped(pt),
|
2014-01-24 09:02:23 +00:00
|
|
|
nsIntPoint(aRxs[i], aRys[i]),
|
|
|
|
aRotationAngles[i],
|
|
|
|
aForces[i]);
|
2014-01-28 11:42:44 +00:00
|
|
|
|
|
|
|
// Consider all injected touch events as changedTouches. For more details
|
|
|
|
// about the meaning of changedTouches for each event, see
|
|
|
|
// https://developer.mozilla.org/docs/Web/API/TouchEvent.changedTouches
|
|
|
|
t->mChanged = true;
|
2014-01-24 09:02:23 +00:00
|
|
|
event.touches.AppendElement(t);
|
|
|
|
}
|
|
|
|
|
2014-02-15 00:45:44 +00:00
|
|
|
if ((msg == NS_TOUCH_END || msg == NS_TOUCH_CANCEL) && sEventCapturer) {
|
|
|
|
WidgetGUIEvent* guiEvent = event.AsGUIEvent();
|
|
|
|
TryCapture(*guiEvent);
|
|
|
|
}
|
|
|
|
|
2014-01-24 09:02:23 +00:00
|
|
|
SendRealTouchEvent(event);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::GetUseAsyncPanZoom(bool* useAsyncPanZoom)
|
|
|
|
{
|
|
|
|
*useAsyncPanZoom = UseAsyncPanZoom();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-02-20 11:26:13 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::SetIsDocShellActive(bool isActive)
|
|
|
|
{
|
2014-03-03 09:05:13 +00:00
|
|
|
unused << SendSetIsDocShellActive(isActive);
|
2014-02-20 11:26:13 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-05-23 18:19:00 +00:00
|
|
|
bool
|
|
|
|
TabParent::RecvRemotePaintIsReady()
|
|
|
|
{
|
|
|
|
nsCOMPtr<mozilla::dom::EventTarget> target = do_QueryInterface(mFrameElement);
|
|
|
|
if (!target) {
|
|
|
|
NS_WARNING("Could not locate target for MozAfterRemotePaint message.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEvent> event;
|
|
|
|
NS_NewDOMEvent(getter_AddRefs(event), mFrameElement, nullptr, nullptr);
|
|
|
|
event->InitEvent(NS_LITERAL_STRING("MozAfterRemotePaint"), false, false);
|
|
|
|
event->SetTrusted(true);
|
|
|
|
event->GetInternalNSEvent()->mFlags.mOnlyChromeDispatch = true;
|
|
|
|
bool dummy;
|
|
|
|
mFrameElement->DispatchEvent(event, &dummy);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-11 05:44:36 +00:00
|
|
|
class FakeChannel MOZ_FINAL : public nsIChannel,
|
|
|
|
public nsIAuthPromptCallback,
|
|
|
|
public nsIInterfaceRequestor,
|
|
|
|
public nsILoadContext
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FakeChannel(const nsCString& aUri, uint64_t aCallbackId, Element* aElement)
|
|
|
|
: mCallbackId(aCallbackId)
|
|
|
|
, mElement(aElement)
|
|
|
|
{
|
|
|
|
NS_NewURI(getter_AddRefs(mUri), aUri);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
#define NO_IMPL { return NS_ERROR_NOT_IMPLEMENTED; }
|
|
|
|
NS_IMETHOD GetName(nsACString&) NO_IMPL
|
|
|
|
NS_IMETHOD IsPending(bool*) NO_IMPL
|
|
|
|
NS_IMETHOD GetStatus(nsresult*) NO_IMPL
|
|
|
|
NS_IMETHOD Cancel(nsresult) NO_IMPL
|
|
|
|
NS_IMETHOD Suspend() NO_IMPL
|
|
|
|
NS_IMETHOD Resume() NO_IMPL
|
|
|
|
NS_IMETHOD GetLoadGroup(nsILoadGroup**) NO_IMPL
|
|
|
|
NS_IMETHOD SetLoadGroup(nsILoadGroup*) NO_IMPL
|
|
|
|
NS_IMETHOD SetLoadFlags(nsLoadFlags) NO_IMPL
|
|
|
|
NS_IMETHOD GetLoadFlags(nsLoadFlags*) NO_IMPL
|
|
|
|
NS_IMETHOD GetOriginalURI(nsIURI**) NO_IMPL
|
|
|
|
NS_IMETHOD SetOriginalURI(nsIURI*) NO_IMPL
|
|
|
|
NS_IMETHOD GetURI(nsIURI** aUri)
|
|
|
|
{
|
|
|
|
NS_IF_ADDREF(mUri);
|
|
|
|
*aUri = mUri;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
NS_IMETHOD GetOwner(nsISupports**) NO_IMPL
|
|
|
|
NS_IMETHOD SetOwner(nsISupports*) NO_IMPL
|
2014-07-10 06:56:36 +00:00
|
|
|
NS_IMETHOD GetLoadInfo(nsILoadInfo** aLoadInfo)
|
|
|
|
{
|
|
|
|
NS_IF_ADDREF(*aLoadInfo = mLoadInfo);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
NS_IMETHOD SetLoadInfo(nsILoadInfo* aLoadInfo)
|
|
|
|
{
|
|
|
|
mLoadInfo = aLoadInfo;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2014-06-11 05:44:36 +00:00
|
|
|
NS_IMETHOD GetNotificationCallbacks(nsIInterfaceRequestor** aRequestor)
|
|
|
|
{
|
|
|
|
NS_ADDREF(*aRequestor = this);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
NS_IMETHOD SetNotificationCallbacks(nsIInterfaceRequestor*) NO_IMPL
|
|
|
|
NS_IMETHOD GetSecurityInfo(nsISupports**) NO_IMPL
|
|
|
|
NS_IMETHOD GetContentType(nsACString&) NO_IMPL
|
|
|
|
NS_IMETHOD SetContentType(const nsACString&) NO_IMPL
|
|
|
|
NS_IMETHOD GetContentCharset(nsACString&) NO_IMPL
|
|
|
|
NS_IMETHOD SetContentCharset(const nsACString&) NO_IMPL
|
|
|
|
NS_IMETHOD GetContentLength(int64_t*) NO_IMPL
|
|
|
|
NS_IMETHOD SetContentLength(int64_t) NO_IMPL
|
|
|
|
NS_IMETHOD Open(nsIInputStream**) NO_IMPL
|
|
|
|
NS_IMETHOD AsyncOpen(nsIStreamListener*, nsISupports*) NO_IMPL
|
|
|
|
NS_IMETHOD GetContentDisposition(uint32_t*) NO_IMPL
|
|
|
|
NS_IMETHOD SetContentDisposition(uint32_t) NO_IMPL
|
|
|
|
NS_IMETHOD GetContentDispositionFilename(nsAString&) NO_IMPL
|
|
|
|
NS_IMETHOD SetContentDispositionFilename(const nsAString&) NO_IMPL
|
|
|
|
NS_IMETHOD GetContentDispositionHeader(nsACString&) NO_IMPL
|
|
|
|
NS_IMETHOD OnAuthAvailable(nsISupports *aContext, nsIAuthInformation *aAuthInfo);
|
|
|
|
NS_IMETHOD OnAuthCancelled(nsISupports *aContext, bool userCancel);
|
|
|
|
NS_IMETHOD GetInterface(const nsIID & uuid, void **result)
|
|
|
|
{
|
|
|
|
return QueryInterface(uuid, result);
|
|
|
|
}
|
|
|
|
NS_IMETHOD GetAssociatedWindow(nsIDOMWindow**) NO_IMPL
|
|
|
|
NS_IMETHOD GetTopWindow(nsIDOMWindow**) NO_IMPL
|
|
|
|
NS_IMETHOD GetTopFrameElement(nsIDOMElement** aElement)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMElement> elem = do_QueryInterface(mElement);
|
|
|
|
elem.forget(aElement);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
NS_IMETHOD GetNestedFrameId(uint64_t*) NO_IMPL
|
|
|
|
NS_IMETHOD IsAppOfType(uint32_t, bool*) NO_IMPL
|
|
|
|
NS_IMETHOD GetIsContent(bool*) NO_IMPL
|
|
|
|
NS_IMETHOD GetUsePrivateBrowsing(bool*) NO_IMPL
|
|
|
|
NS_IMETHOD SetUsePrivateBrowsing(bool) NO_IMPL
|
|
|
|
NS_IMETHOD SetPrivateBrowsing(bool) NO_IMPL
|
|
|
|
NS_IMETHOD GetIsInBrowserElement(bool*) NO_IMPL
|
|
|
|
NS_IMETHOD GetAppId(uint32_t*) NO_IMPL
|
|
|
|
NS_IMETHOD GetUseRemoteTabs(bool*) NO_IMPL
|
|
|
|
NS_IMETHOD SetRemoteTabs(bool) NO_IMPL
|
|
|
|
#undef NO_IMPL
|
|
|
|
|
|
|
|
protected:
|
2014-06-23 19:56:07 +00:00
|
|
|
~FakeChannel() {}
|
|
|
|
|
2014-06-11 05:44:36 +00:00
|
|
|
nsCOMPtr<nsIURI> mUri;
|
|
|
|
uint64_t mCallbackId;
|
|
|
|
nsCOMPtr<Element> mElement;
|
2014-07-10 06:56:36 +00:00
|
|
|
nsCOMPtr<nsILoadInfo> mLoadInfo;
|
2014-06-11 05:44:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(FakeChannel, nsIChannel, nsIAuthPromptCallback,
|
|
|
|
nsIRequest, nsIInterfaceRequestor, nsILoadContext);
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvAsyncAuthPrompt(const nsCString& aUri,
|
|
|
|
const nsString& aRealm,
|
|
|
|
const uint64_t& aCallbackId)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIAuthPrompt2> authPrompt;
|
|
|
|
GetAuthPrompt(nsIAuthPromptProvider::PROMPT_NORMAL,
|
|
|
|
NS_GET_IID(nsIAuthPrompt2),
|
|
|
|
getter_AddRefs(authPrompt));
|
|
|
|
nsRefPtr<FakeChannel> channel = new FakeChannel(aUri, aCallbackId, mFrameElement);
|
|
|
|
uint32_t promptFlags = nsIAuthInformation::AUTH_HOST;
|
|
|
|
|
|
|
|
nsRefPtr<nsAuthInformationHolder> holder =
|
|
|
|
new nsAuthInformationHolder(promptFlags, aRealm,
|
|
|
|
EmptyCString());
|
|
|
|
|
|
|
|
uint32_t level = nsIAuthPrompt2::LEVEL_NONE;
|
|
|
|
nsCOMPtr<nsICancelable> dummy;
|
|
|
|
nsresult rv =
|
|
|
|
authPrompt->AsyncPromptAuth(channel, channel, nullptr,
|
|
|
|
level, holder, getter_AddRefs(dummy));
|
|
|
|
|
|
|
|
return rv == NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FakeChannel::OnAuthAvailable(nsISupports *aContext, nsIAuthInformation *aAuthInfo)
|
|
|
|
{
|
|
|
|
nsAuthInformationHolder* holder =
|
|
|
|
static_cast<nsAuthInformationHolder*>(aAuthInfo);
|
|
|
|
|
|
|
|
if (!net::gNeckoChild->SendOnAuthAvailable(mCallbackId,
|
|
|
|
holder->User(),
|
|
|
|
holder->Password(),
|
|
|
|
holder->Domain())) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FakeChannel::OnAuthCancelled(nsISupports *aContext, bool userCancel)
|
|
|
|
{
|
|
|
|
if (!net::gNeckoChild->SendOnAuthCancelled(mCallbackId, userCancel)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-30 20:39:22 +00:00
|
|
|
} // namespace tabs
|
|
|
|
} // namespace mozilla
|