2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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-10 02:00:14 +04:00
|
|
|
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "base/basictypes.h"
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2012-08-02 10:02:29 +04:00
|
|
|
#include "TabParent.h"
|
|
|
|
|
2013-11-06 21:21:17 +04:00
|
|
|
#include "AppProcessChecker.h"
|
2012-08-09 06:58:06 +04:00
|
|
|
#include "mozIApplication.h"
|
2015-05-21 20:04:58 +03:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
#include "mozilla/a11y/DocAccessibleParent.h"
|
|
|
|
#include "nsAccessibilityService.h"
|
|
|
|
#endif
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "mozilla/BrowserElementParent.h"
|
2010-08-21 03:24:41 +04:00
|
|
|
#include "mozilla/dom/ContentParent.h"
|
2015-04-08 21:48:11 +03:00
|
|
|
#include "mozilla/dom/DataTransfer.h"
|
2014-09-27 03:21:57 +04:00
|
|
|
#include "mozilla/dom/indexedDB/ActorsParent.h"
|
2014-11-12 23:59:19 +03:00
|
|
|
#include "mozilla/plugins/PluginWidgetParent.h"
|
2014-04-01 08:09:23 +04:00
|
|
|
#include "mozilla/EventStateManager.h"
|
2015-04-08 21:48:11 +03:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2012-12-23 17:48:07 +04:00
|
|
|
#include "mozilla/Hal.h"
|
2009-10-29 20:58:31 +03:00
|
|
|
#include "mozilla/ipc/DocumentRendererParent.h"
|
2015-01-27 00:32:18 +03:00
|
|
|
#include "mozilla/jsipc/CrossProcessObjectWrappers.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "mozilla/layers/CompositorParent.h"
|
2014-12-16 10:31:12 +03:00
|
|
|
#include "mozilla/layers/InputAPZContext.h"
|
2010-08-21 03:24:41 +04:00
|
|
|
#include "mozilla/layout/RenderFrameParent.h"
|
2015-04-22 17:58:33 +03:00
|
|
|
#include "mozilla/LookAndFeel.h"
|
2013-09-25 15:21:18 +04:00
|
|
|
#include "mozilla/MouseEvents.h"
|
2014-06-11 09:44:36 +04:00
|
|
|
#include "mozilla/net/NeckoChild.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "mozilla/Preferences.h"
|
2013-09-25 15:21:19 +04:00
|
|
|
#include "mozilla/TextEvents.h"
|
2013-09-25 15:21:16 +04:00
|
|
|
#include "mozilla/TouchEvents.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "mozilla/unused.h"
|
2015-04-08 21:48:11 +03:00
|
|
|
#include "BlobParent.h"
|
2009-11-05 21:14:22 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2015-04-08 21:48:11 +03:00
|
|
|
#include "nsContentAreaDragDrop.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsDebug.h"
|
|
|
|
#include "nsFocusManager.h"
|
2010-01-01 04:35:55 +03:00
|
|
|
#include "nsFrameLoader.h"
|
2015-01-13 03:41:53 +03:00
|
|
|
#include "nsIBaseWindow.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIContent.h"
|
2013-03-28 09:12:03 +04:00
|
|
|
#include "nsIDocShell.h"
|
2013-09-24 01:30:40 +04:00
|
|
|
#include "nsIDocShellTreeOwner.h"
|
2015-02-03 20:20:46 +03:00
|
|
|
#include "nsIDOMChromeWindow.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDOMEvent.h"
|
|
|
|
#include "nsIDOMWindow.h"
|
2014-04-05 01:50:42 +04:00
|
|
|
#include "nsIDOMWindowUtils.h"
|
2013-09-24 01:30:40 +04:00
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
2014-07-10 10:56:36 +04:00
|
|
|
#include "nsILoadInfo.h"
|
2015-02-11 14:53:00 +03:00
|
|
|
#include "nsPrincipal.h"
|
2010-06-25 02:20:42 +04:00
|
|
|
#include "nsIPromptFactory.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIURI.h"
|
2013-07-25 23:45:31 +04:00
|
|
|
#include "nsIWebBrowserChrome.h"
|
2014-06-20 22:07:47 +04:00
|
|
|
#include "nsIWindowCreator2.h"
|
2013-07-25 23:45:31 +04:00
|
|
|
#include "nsIXULBrowserWindow.h"
|
|
|
|
#include "nsIXULWindow.h"
|
2014-12-09 18:48:27 +03:00
|
|
|
#include "nsIRemoteBrowser.h"
|
2013-01-05 07:12:24 +04:00
|
|
|
#include "nsViewManager.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIWidget.h"
|
2015-02-03 20:20:46 +03:00
|
|
|
#include "nsIWindowMediator.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIWindowWatcher.h"
|
2014-11-06 17:41:00 +03:00
|
|
|
#include "nsOpenURIInFrameParams.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsPIDOMWindow.h"
|
2014-06-20 22:07:47 +04:00
|
|
|
#include "nsPIWindowWatcher.h"
|
2014-11-03 10:05:38 +03:00
|
|
|
#include "nsPresShell.h"
|
2012-04-25 20:35:58 +04:00
|
|
|
#include "nsPrintfCString.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2014-06-20 22:07:47 +04:00
|
|
|
#include "nsWindowWatcher.h"
|
2013-02-16 02:27:21 +04:00
|
|
|
#include "private/pprio.h"
|
2013-11-06 21:21:15 +04:00
|
|
|
#include "PermissionMessageUtils.h"
|
2012-08-02 10:02:29 +04:00
|
|
|
#include "StructuredCloneUtils.h"
|
2014-02-24 00:19:43 +04:00
|
|
|
#include "ColorPickerParent.h"
|
2014-02-18 04:30:06 +04:00
|
|
|
#include "FilePickerParent.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "TabChild.h"
|
2014-01-11 05:10:57 +04:00
|
|
|
#include "LoadContext.h"
|
2013-09-24 01:30:40 +04:00
|
|
|
#include "nsNetCID.h"
|
2014-06-11 09:44:36 +04:00
|
|
|
#include "nsIAuthInformation.h"
|
|
|
|
#include "nsIAuthPromptCallback.h"
|
2015-04-08 21:48:11 +03:00
|
|
|
#include "SourceSurfaceRawData.h"
|
2014-06-11 09:44:36 +04:00
|
|
|
#include "nsAuthInformationHolder.h"
|
|
|
|
#include "nsICancelable.h"
|
2014-06-03 17:39:44 +04:00
|
|
|
#include "gfxPrefs.h"
|
2014-11-04 22:51:06 +03:00
|
|
|
#include "nsILoginManagerPrompter.h"
|
2015-03-31 23:39:02 +03:00
|
|
|
#include "nsPIWindowRoot.h"
|
2015-05-20 04:28:57 +03:00
|
|
|
#include "gfxDrawable.h"
|
|
|
|
#include "ImageOps.h"
|
2013-01-15 16:22:03 +04:00
|
|
|
#include <algorithm>
|
2010-07-19 22:33:33 +04:00
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
using namespace mozilla::ipc;
|
2012-07-20 10:48:27 +04:00
|
|
|
using namespace mozilla::layers;
|
2010-08-21 03:24:41 +04:00
|
|
|
using namespace mozilla::layout;
|
2012-08-09 06:58:06 +04:00
|
|
|
using namespace mozilla::services;
|
2011-11-27 15:51:52 +04:00
|
|
|
using namespace mozilla::widget;
|
2013-07-11 02:05:39 +04:00
|
|
|
using namespace mozilla::jsipc;
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2010-03-26 21:39:39 +03: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-16 02:27:21 +04: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);
|
|
|
|
|
|
|
|
nsRefPtr<TabParent> tabParent;
|
|
|
|
mTabParent.swap(tabParent);
|
|
|
|
|
2013-11-26 20:39:19 +04:00
|
|
|
using mozilla::ipc::FileDescriptor;
|
|
|
|
|
2015-01-10 00:10:14 +03:00
|
|
|
FileDescriptor fd;
|
|
|
|
if (mFD) {
|
|
|
|
FileDescriptor::PlatformHandleType handle =
|
|
|
|
FileDescriptor::PlatformHandleType(PR_FileDesc2NativeHandle(mFD));
|
|
|
|
fd = FileDescriptor(handle);
|
|
|
|
}
|
2013-02-16 02:27:21 +04:00
|
|
|
|
2014-08-27 23:15:30 +04:00
|
|
|
// Our TabParent may have been destroyed already. If so, don't send any
|
|
|
|
// fds over, just go back to the IO thread and close them.
|
|
|
|
if (!tabParent->IsDestroyed()) {
|
2015-01-10 00:10:14 +03:00
|
|
|
mozilla::unused << tabParent->SendCacheFileDescriptor(mPath, fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mFD) {
|
|
|
|
return;
|
2014-08-27 23:15:30 +04:00
|
|
|
}
|
2013-02-16 02:27:21 +04: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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-10 00:10:14 +03:00
|
|
|
// Helper method to avoid gnarly control flow for failures.
|
2015-05-12 15:11:03 +03:00
|
|
|
void OpenBlobImpl()
|
2013-02-16 02:27:21 +04:00
|
|
|
{
|
|
|
|
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;
|
2015-01-10 00:10:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void OpenFile()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
2015-05-12 15:11:03 +03:00
|
|
|
OpenBlobImpl();
|
2013-02-16 02:27:21 +04:00
|
|
|
|
2014-05-23 23:53:17 +04:00
|
|
|
if (NS_FAILED(NS_DispatchToMainThread(this))) {
|
2013-02-16 02:27:21 +04:00
|
|
|
NS_WARNING("Failed to dispatch to main thread!");
|
|
|
|
|
2015-01-10 00:10:14 +03:00
|
|
|
// Intentionally leak the runnable (but not the fd) rather
|
|
|
|
// than crash when trying to release a main thread object
|
|
|
|
// off the main thread.
|
|
|
|
mTabParent.forget();
|
2013-02-16 02:27:21 +04:00
|
|
|
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-05 02:46:20 +04:00
|
|
|
PRStatus prrc;
|
|
|
|
prrc = PR_Close(mFD);
|
|
|
|
if (prrc != PR_SUCCESS) {
|
|
|
|
NS_ERROR("PR_Close() failed.");
|
|
|
|
}
|
2013-02-16 02:27:21 +04:00
|
|
|
mFD = nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
namespace mozilla {
|
2009-08-12 20:18:08 +04:00
|
|
|
namespace dom {
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
TabParent *TabParent::mIMETabParent = nullptr;
|
2014-12-19 02:23:39 +03:00
|
|
|
TabParent::LayerToTabParentTable* TabParent::sLayerToTabParentTable = nullptr;
|
2010-09-24 07:28:15 +04:00
|
|
|
|
2014-06-06 06:49:43 +04:00
|
|
|
NS_IMPL_ISUPPORTS(TabParent,
|
|
|
|
nsITabParent,
|
|
|
|
nsIAuthPromptProvider,
|
|
|
|
nsISecureBrowserUI,
|
|
|
|
nsISupportsWeakReference)
|
2010-03-26 21:39:39 +03:00
|
|
|
|
2014-10-29 21:11:00 +03:00
|
|
|
TabParent::TabParent(nsIContentParent* aManager,
|
|
|
|
const TabId& aTabId,
|
|
|
|
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 22:32:37 +04:00
|
|
|
: TabContext(aContext)
|
2013-10-28 18:04:12 +04:00
|
|
|
, mFrameElement(nullptr)
|
2013-01-29 11:49:38 +04:00
|
|
|
, mRect(0, 0, 0, 0)
|
2012-09-29 06:16:36 +04:00
|
|
|
, mDimensions(0, 0)
|
2013-01-29 11:49:38 +04:00
|
|
|
, mOrientation(0)
|
2010-12-09 21:57:05 +03:00
|
|
|
, mDPI(0)
|
2013-05-02 03:06:19 +04:00
|
|
|
, mDefaultScale(0)
|
2013-01-29 11:49:38 +04:00
|
|
|
, mUpdatedDimensions(false)
|
2013-07-10 21:07:51 +04:00
|
|
|
, mManager(aManager)
|
2013-01-10 17:22:14 +04:00
|
|
|
, mMarkedDestroying(false)
|
2012-11-10 10:09:24 +04:00
|
|
|
, mIsDestroyed(false)
|
2013-02-16 02:27:21 +04:00
|
|
|
, mAppPackageFileDescriptorSent(false)
|
2014-08-23 03:17:18 +04:00
|
|
|
, mSendOfflineStatus(true)
|
2014-01-11 05:10:57 +04:00
|
|
|
, mChromeFlags(aChromeFlags)
|
2015-04-08 21:48:11 +03:00
|
|
|
, mDragAreaX(0)
|
|
|
|
, mDragAreaY(0)
|
2014-11-16 21:23:22 +03:00
|
|
|
, mInitedByParent(false)
|
2014-10-29 21:11:00 +03:00
|
|
|
, mTabId(aTabId)
|
2015-01-23 07:00:18 +03:00
|
|
|
, mCreatingWindow(false)
|
2015-03-11 01:21:02 +03:00
|
|
|
, mNeedLayerTreeReadyNotification(false)
|
2015-04-15 02:29:10 +03:00
|
|
|
, mCursor(nsCursor(-1))
|
|
|
|
, mTabSetsCursor(false)
|
2015-05-13 23:44:39 +03:00
|
|
|
, mHasContentOpener(false)
|
2009-07-01 00:39:22 +04:00
|
|
|
{
|
2014-06-11 09:44:03 +04:00
|
|
|
MOZ_ASSERT(aManager);
|
2009-07-01 00:39:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
TabParent::~TabParent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-12-19 02:23:39 +03:00
|
|
|
TabParent*
|
|
|
|
TabParent::GetTabParentFromLayersId(uint64_t aLayersId)
|
|
|
|
{
|
|
|
|
if (!sLayerToTabParentTable) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return sLayerToTabParentTable->Get(aLayersId);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::AddTabParentToTable(uint64_t aLayersId, TabParent* aTabParent)
|
|
|
|
{
|
|
|
|
if (!sLayerToTabParentTable) {
|
|
|
|
sLayerToTabParentTable = new LayerToTabParentTable();
|
|
|
|
}
|
|
|
|
sLayerToTabParentTable->Put(aLayersId, aTabParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::RemoveTabParentFromTable(uint64_t aLayersId)
|
|
|
|
{
|
|
|
|
if (!sLayerToTabParentTable) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
sLayerToTabParentTable->Remove(aLayersId);
|
|
|
|
if (sLayerToTabParentTable->Count() == 0) {
|
|
|
|
delete sLayerToTabParentTable;
|
|
|
|
sLayerToTabParentTable = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-27 08:35:26 +03:00
|
|
|
void
|
|
|
|
TabParent::CacheFrameLoader(nsFrameLoader* aFrameLoader)
|
|
|
|
{
|
|
|
|
mFrameLoader = aFrameLoader;
|
|
|
|
}
|
|
|
|
|
2010-12-09 21:57:05 +03:00
|
|
|
void
|
2013-07-24 03:39:17 +04:00
|
|
|
TabParent::SetOwnerElement(Element* aElement)
|
2010-12-09 21:57:05 +03:00
|
|
|
{
|
2015-03-31 23:39:02 +03:00
|
|
|
// If we held previous content then unregister for its events.
|
|
|
|
RemoveWindowListeners();
|
|
|
|
|
|
|
|
// Update to the new content, and register to listen for events from it.
|
2010-12-09 21:57:05 +03:00
|
|
|
mFrameElement = aElement;
|
2015-03-31 23:39:02 +03:00
|
|
|
|
2015-04-21 17:33:56 +03:00
|
|
|
AddWindowListeners();
|
2013-05-02 03:06:19 +04:00
|
|
|
TryCacheDPIAndScale();
|
2010-12-09 21:57:05 +03:00
|
|
|
}
|
|
|
|
|
2015-04-21 17:33:56 +03:00
|
|
|
void
|
|
|
|
TabParent::AddWindowListeners()
|
|
|
|
{
|
|
|
|
if (mFrameElement && mFrameElement->OwnerDoc()) {
|
|
|
|
if (nsCOMPtr<nsPIDOMWindow> window = mFrameElement->OwnerDoc()->GetWindow()) {
|
|
|
|
nsCOMPtr<EventTarget> eventTarget = window->GetTopWindowRoot();
|
|
|
|
if (eventTarget) {
|
|
|
|
eventTarget->AddEventListener(NS_LITERAL_STRING("MozUpdateWindowPos"),
|
|
|
|
this, false, false);
|
|
|
|
}
|
|
|
|
}
|
2015-04-21 17:33:56 +03:00
|
|
|
if (nsIPresShell* shell = mFrameElement->OwnerDoc()->GetShell()) {
|
|
|
|
mPresShellWithRefreshListener = shell;
|
|
|
|
shell->AddPostRefreshObserver(this);
|
|
|
|
}
|
2015-04-21 17:33:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-31 23:39:02 +03:00
|
|
|
void
|
|
|
|
TabParent::RemoveWindowListeners()
|
|
|
|
{
|
|
|
|
if (mFrameElement && mFrameElement->OwnerDoc()->GetWindow()) {
|
|
|
|
nsCOMPtr<nsPIDOMWindow> window = mFrameElement->OwnerDoc()->GetWindow();
|
|
|
|
nsCOMPtr<EventTarget> eventTarget = window->GetTopWindowRoot();
|
|
|
|
if (eventTarget) {
|
|
|
|
eventTarget->RemoveEventListener(NS_LITERAL_STRING("MozUpdateWindowPos"),
|
|
|
|
this, false);
|
|
|
|
}
|
|
|
|
}
|
2015-04-21 17:33:56 +03:00
|
|
|
if (mPresShellWithRefreshListener) {
|
|
|
|
mPresShellWithRefreshListener->RemovePostRefreshObserver(this);
|
|
|
|
mPresShellWithRefreshListener = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::DidRefresh()
|
|
|
|
{
|
|
|
|
if (mChromeOffset != -GetChildProcessOffset()) {
|
|
|
|
UpdatePosition();
|
|
|
|
}
|
2015-03-31 23:39:02 +03:00
|
|
|
}
|
|
|
|
|
2013-04-26 04:53:26 +04: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 07:54:47 +03:00
|
|
|
void
|
|
|
|
TabParent::Destroy()
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-21 17:33:56 +03:00
|
|
|
RemoveWindowListeners();
|
|
|
|
|
2011-01-06 07:54:47 +03: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-07-20 10:48:27 +04:00
|
|
|
if (RenderFrameParent* frame = GetRenderFrame()) {
|
2014-12-19 02:23:39 +03:00
|
|
|
RemoveTabParentFromTable(frame->GetLayersId());
|
2012-07-20 10:48:27 +04:00
|
|
|
frame->Destroy();
|
2011-01-06 07:54:47 +03:00
|
|
|
}
|
2012-11-10 10:09:24 +04:00
|
|
|
mIsDestroyed = true;
|
2013-01-10 17:22:14 +04:00
|
|
|
|
2014-06-11 09:44:03 +04:00
|
|
|
if (XRE_GetProcessType() == GeckoProcessType_Default) {
|
|
|
|
Manager()->AsContentParent()->NotifyTabDestroying(this);
|
|
|
|
}
|
2015-01-29 22:41:56 +03:00
|
|
|
|
|
|
|
// Let all PluginWidgets know we are tearing down. Prevents
|
|
|
|
// these objects from sending async events after the child side
|
|
|
|
// is shut down.
|
|
|
|
const nsTArray<PPluginWidgetParent*>& kids = ManagedPPluginWidgetParent();
|
|
|
|
for (uint32_t idx = 0; idx < kids.Length(); ++idx) {
|
|
|
|
static_cast<mozilla::plugins::PluginWidgetParent*>(kids[idx])->ParentDestroy();
|
|
|
|
}
|
|
|
|
|
2013-01-10 17:22:14 +04:00
|
|
|
mMarkedDestroying = true;
|
2011-01-06 07:54:47 +03:00
|
|
|
}
|
|
|
|
|
2012-07-17 22:27:27 +04:00
|
|
|
bool
|
|
|
|
TabParent::Recv__delete__()
|
|
|
|
{
|
2014-06-11 09:44:03 +04:00
|
|
|
if (XRE_GetProcessType() == GeckoProcessType_Default) {
|
|
|
|
Manager()->AsContentParent()->NotifyTabDestroyed(this, mMarkedDestroying);
|
2014-10-29 21:11:00 +03:00
|
|
|
ContentParent::DeallocateTabId(mTabId,
|
|
|
|
Manager()->AsContentParent()->ChildID());
|
2014-06-11 09:44:03 +04:00
|
|
|
}
|
2014-10-29 21:11:00 +03:00
|
|
|
else {
|
|
|
|
ContentParent::DeallocateTabId(mTabId, ContentParentId(0));
|
|
|
|
}
|
|
|
|
|
2012-07-17 22:27:27 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-04-12 04:34:02 +04:00
|
|
|
void
|
|
|
|
TabParent::ActorDestroy(ActorDestroyReason why)
|
|
|
|
{
|
2012-09-12 00:05:52 +04:00
|
|
|
if (mIMETabParent == this) {
|
2012-07-30 18:20:58 +04:00
|
|
|
mIMETabParent = nullptr;
|
2012-09-12 00:05:52 +04:00
|
|
|
}
|
2015-02-27 08:35:26 +03:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader(true);
|
2014-09-19 04:07:56 +04:00
|
|
|
nsCOMPtr<nsIObserverService> os = services::GetObserverService();
|
2010-08-06 02:11:23 +04:00
|
|
|
if (frameLoader) {
|
2013-09-04 02:11:22 +04:00
|
|
|
nsCOMPtr<Element> frameElement(mFrameElement);
|
2013-11-06 21:21:15 +04:00
|
|
|
ReceiveMessage(CHILD_PROCESS_SHUTDOWN_MESSAGE, false, nullptr, nullptr,
|
|
|
|
nullptr);
|
2015-02-27 08:35:26 +03:00
|
|
|
frameLoader->DestroyComplete();
|
2012-08-02 18:26:57 +04:00
|
|
|
|
2014-09-19 04:07:56 +04:00
|
|
|
if (why == AbnormalShutdown && os) {
|
2013-04-26 04:53:26 +04:00
|
|
|
os->NotifyObservers(NS_ISUPPORTS_CAST(nsIFrameLoader*, frameLoader),
|
|
|
|
"oop-frameloader-crashed", nullptr);
|
2013-09-04 02:11:22 +04:00
|
|
|
nsContentUtils::DispatchTrustedEvent(frameElement->OwnerDoc(), frameElement,
|
|
|
|
NS_LITERAL_STRING("oop-browser-crashed"),
|
|
|
|
true, true);
|
2012-08-02 18:26:57 +04:00
|
|
|
}
|
2015-02-27 08:35:26 +03:00
|
|
|
|
|
|
|
mFrameLoader = nullptr;
|
2010-04-12 04:34:02 +04:00
|
|
|
}
|
2013-04-26 04:53:26 +04:00
|
|
|
|
2014-09-19 04:07:56 +04:00
|
|
|
if (os) {
|
|
|
|
os->NotifyObservers(NS_ISUPPORTS_CAST(nsITabParent*, this), "ipc:browser-destroyed", nullptr);
|
|
|
|
}
|
2010-04-12 04:34:02 +04:00
|
|
|
}
|
|
|
|
|
2009-11-05 21:14:22 +03:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::RecvMoveFocus(const bool& aForward)
|
2009-11-05 21:14:22 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFocusManager> fm = do_GetService(FOCUSMANAGER_CONTRACTID);
|
|
|
|
if (fm) {
|
|
|
|
nsCOMPtr<nsIDOMElement> dummy;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t type = aForward ? uint32_t(nsIFocusManager::MOVEFOCUS_FORWARD)
|
|
|
|
: uint32_t(nsIFocusManager::MOVEFOCUS_BACKWARD);
|
2013-07-24 03:39:17 +04:00
|
|
|
nsCOMPtr<nsIDOMElement> frame = do_QueryInterface(mFrameElement);
|
|
|
|
fm->MoveFocus(nullptr, frame, type, nsIFocusManager::FLAG_BYKEY,
|
2009-11-05 21:14:22 +03:00
|
|
|
getter_AddRefs(dummy));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-17 17:22:23 +03:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::RecvEvent(const RemoteDOMEvent& aEvent)
|
2009-11-17 17:22:23 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMEvent> event = do_QueryInterface(aEvent.mEvent);
|
|
|
|
NS_ENSURE_TRUE(event, true);
|
|
|
|
|
2013-03-09 15:34:29 +04:00
|
|
|
nsCOMPtr<mozilla::dom::EventTarget> target = do_QueryInterface(mFrameElement);
|
2009-11-17 17:22:23 +03:00
|
|
|
NS_ENSURE_TRUE(target, true);
|
|
|
|
|
2013-03-09 15:34:29 +04:00
|
|
|
event->SetOwner(target);
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool dummy;
|
2009-11-17 17:22:23 +03:00
|
|
|
target->DispatchEvent(event, &dummy);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
struct MOZ_STACK_CLASS TabParent::AutoUseNewTab final
|
2015-01-16 21:07:50 +03:00
|
|
|
{
|
|
|
|
public:
|
2015-01-23 07:00:18 +03:00
|
|
|
AutoUseNewTab(TabParent* aNewTab, bool* aWindowIsNew, nsCString* aURLToLoad)
|
|
|
|
: mNewTab(aNewTab), mWindowIsNew(aWindowIsNew), mURLToLoad(aURLToLoad)
|
2015-01-16 21:07:50 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(!TabParent::sNextTabParent);
|
2015-01-23 07:00:18 +03:00
|
|
|
MOZ_ASSERT(!aNewTab->mCreatingWindow);
|
|
|
|
|
2015-01-16 21:07:50 +03:00
|
|
|
TabParent::sNextTabParent = aNewTab;
|
2015-01-23 07:00:18 +03:00
|
|
|
aNewTab->mCreatingWindow = true;
|
|
|
|
aNewTab->mDelayedURL.Truncate();
|
2015-01-16 21:07:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
~AutoUseNewTab()
|
|
|
|
{
|
2015-01-23 07:00:18 +03:00
|
|
|
mNewTab->mCreatingWindow = false;
|
|
|
|
*mURLToLoad = mNewTab->mDelayedURL;
|
2015-01-16 21:07:50 +03:00
|
|
|
|
|
|
|
if (TabParent::sNextTabParent) {
|
|
|
|
MOZ_ASSERT(TabParent::sNextTabParent == mNewTab);
|
|
|
|
TabParent::sNextTabParent = nullptr;
|
|
|
|
*mWindowIsNew = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
TabParent* mNewTab;
|
|
|
|
bool* mWindowIsNew;
|
2015-01-23 07:00:18 +03:00
|
|
|
nsCString* mURLToLoad;
|
2015-01-16 21:07:50 +03:00
|
|
|
};
|
|
|
|
|
2015-02-03 20:20:46 +03:00
|
|
|
static already_AddRefed<nsIDOMWindow>
|
|
|
|
FindMostRecentOpenWindow()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWindowMediator> windowMediator =
|
|
|
|
do_GetService(NS_WINDOWMEDIATOR_CONTRACTID);
|
|
|
|
nsCOMPtr<nsISimpleEnumerator> windowEnumerator;
|
|
|
|
windowMediator->GetEnumerator(MOZ_UTF16("navigator:browser"),
|
|
|
|
getter_AddRefs(windowEnumerator));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> latest;
|
|
|
|
|
|
|
|
bool hasMore = false;
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(windowEnumerator->HasMoreElements(&hasMore)));
|
|
|
|
while (hasMore) {
|
|
|
|
nsCOMPtr<nsISupports> item;
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(windowEnumerator->GetNext(getter_AddRefs(item))));
|
|
|
|
nsCOMPtr<nsIDOMWindow> window = do_QueryInterface(item);
|
|
|
|
|
|
|
|
bool isClosed;
|
|
|
|
if (window && NS_SUCCEEDED(window->GetClosed(&isClosed)) && !isClosed) {
|
|
|
|
latest = window;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(windowEnumerator->HasMoreElements(&hasMore)));
|
|
|
|
}
|
|
|
|
|
|
|
|
return latest.forget();
|
|
|
|
}
|
|
|
|
|
2010-01-01 04:35:55 +03:00
|
|
|
bool
|
2015-01-16 21:07:50 +03:00
|
|
|
TabParent::RecvCreateWindow(PBrowserParent* aNewTab,
|
|
|
|
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,
|
2015-01-23 07:00:18 +03:00
|
|
|
InfallibleTArray<FrameScriptInfo>* aFrameScripts,
|
|
|
|
nsCString* aURLToLoad)
|
2010-01-01 04:35:55 +03:00
|
|
|
{
|
2015-01-16 21:07:50 +03:00
|
|
|
// We always expect to open a new window here. If we don't, it's an error.
|
|
|
|
*aWindowIsNew = true;
|
|
|
|
|
2014-06-20 22:07:47 +04:00
|
|
|
if (IsBrowserOrApp()) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-01-01 04:35:55 +03:00
|
|
|
|
2014-06-20 22:07:47 +04:00
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsPIWindowWatcher> pwwatch =
|
|
|
|
do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
2015-02-06 00:47:32 +03:00
|
|
|
TabParent* newTab = TabParent::GetFrom(aNewTab);
|
2015-05-13 23:44:39 +03:00
|
|
|
MOZ_ASSERT(newTab);
|
|
|
|
|
|
|
|
// Content has requested that we open this new content window, so
|
|
|
|
// we must have an opener.
|
|
|
|
newTab->SetHasContentOpener(true);
|
2015-01-16 21:07:50 +03:00
|
|
|
|
2014-06-20 22:07:47 +04:00
|
|
|
nsCOMPtr<nsIContent> frame(do_QueryInterface(mFrameElement));
|
|
|
|
|
2015-02-03 20:20:46 +03:00
|
|
|
nsCOMPtr<nsIDOMWindow> parent;
|
|
|
|
if (frame) {
|
|
|
|
parent = do_QueryInterface(frame->OwnerDoc()->GetWindow());
|
|
|
|
|
|
|
|
// If our chrome window is in the process of closing, don't try to open a
|
|
|
|
// new tab in it.
|
|
|
|
if (parent) {
|
|
|
|
bool isClosed;
|
|
|
|
if (NS_SUCCEEDED(parent->GetClosed(&isClosed)) && isClosed) {
|
|
|
|
parent = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIBrowserDOMWindow> browserDOMWin = mBrowserDOMWindow;
|
|
|
|
|
|
|
|
// If we haven't found a chrome window to open in, just use the most recently
|
|
|
|
// opened one.
|
|
|
|
if (!parent) {
|
|
|
|
parent = FindMostRecentOpenWindow();
|
|
|
|
if (!parent) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMChromeWindow> rootChromeWin = do_QueryInterface(parent);
|
|
|
|
if (rootChromeWin) {
|
|
|
|
rootChromeWin->GetBrowserDOMWindow(getter_AddRefs(browserDOMWin));
|
|
|
|
}
|
|
|
|
}
|
2014-06-20 22:07:47 +04:00
|
|
|
|
|
|
|
int32_t openLocation =
|
|
|
|
nsWindowWatcher::GetWindowOpenLocation(parent, aChromeFlags, aCalledFromJS,
|
|
|
|
aPositionSpecified, aSizeSpecified);
|
|
|
|
|
|
|
|
MOZ_ASSERT(openLocation == nsIBrowserDOMWindow::OPEN_NEWTAB ||
|
|
|
|
openLocation == nsIBrowserDOMWindow::OPEN_NEWWINDOW);
|
|
|
|
|
|
|
|
// Opening new tabs is the easy case...
|
|
|
|
if (openLocation == nsIBrowserDOMWindow::OPEN_NEWTAB) {
|
2015-02-03 20:20:46 +03:00
|
|
|
NS_ENSURE_TRUE(browserDOMWin, false);
|
2012-08-28 21:22:59 +04:00
|
|
|
|
2014-11-06 17:41:00 +03:00
|
|
|
bool isPrivate;
|
|
|
|
nsCOMPtr<nsILoadContext> loadContext = GetLoadContext();
|
|
|
|
loadContext->GetUsePrivateBrowsing(&isPrivate);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIOpenURIInFrameParams> params = new nsOpenURIInFrameParams();
|
|
|
|
params->SetReferrer(aBaseURI);
|
|
|
|
params->SetIsPrivate(isPrivate);
|
|
|
|
|
2015-01-23 07:00:18 +03:00
|
|
|
AutoUseNewTab aunt(newTab, aWindowIsNew, aURLToLoad);
|
2015-01-16 21:07:50 +03:00
|
|
|
|
2010-01-01 04:35:55 +03:00
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> frameLoaderOwner;
|
2015-02-03 20:20:46 +03:00
|
|
|
browserDOMWin->OpenURIInFrame(nullptr, params,
|
|
|
|
openLocation,
|
|
|
|
nsIBrowserDOMWindow::OPEN_NEW,
|
|
|
|
getter_AddRefs(frameLoaderOwner));
|
2015-01-16 21:07:50 +03:00
|
|
|
if (!frameLoaderOwner) {
|
|
|
|
*aWindowIsNew = false;
|
|
|
|
}
|
2015-01-13 21:28:36 +03:00
|
|
|
|
2015-01-16 21:07:50 +03:00
|
|
|
aFrameScripts->SwapElements(newTab->mDelayedFrameScripts);
|
2010-01-01 04:35:55 +03:00
|
|
|
return true;
|
2014-06-20 22:07:47 +04: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);
|
|
|
|
|
|
|
|
nsAutoCString finalURIString;
|
2015-06-10 04:06:48 +03:00
|
|
|
if (!aURI.IsEmpty()) {
|
|
|
|
nsCOMPtr<nsIURI> finalURI;
|
|
|
|
rv = NS_NewURI(getter_AddRefs(finalURI), NS_ConvertUTF16toUTF8(aURI).get(), baseURI);
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
finalURI->GetSpec(finalURIString);
|
|
|
|
}
|
2014-06-20 22:07:47 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> window;
|
|
|
|
|
2015-01-23 07:00:18 +03:00
|
|
|
AutoUseNewTab aunt(newTab, aWindowIsNew, aURLToLoad);
|
2015-01-16 21:07:50 +03:00
|
|
|
|
2014-06-20 22:07:47 +04:00
|
|
|
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);
|
|
|
|
|
2015-01-14 01:24:52 +03:00
|
|
|
nsCOMPtr<nsIDocShell> windowDocShell = pwindow->GetDocShell();
|
|
|
|
NS_ENSURE_TRUE(windowDocShell, false);
|
2014-06-20 22:07:47 +04:00
|
|
|
|
2015-01-14 01:24:52 +03:00
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> treeOwner;
|
|
|
|
windowDocShell->GetTreeOwner(getter_AddRefs(treeOwner));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXULWindow> xulWin = do_GetInterface(treeOwner);
|
|
|
|
NS_ENSURE_TRUE(xulWin, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXULBrowserWindow> xulBrowserWin;
|
|
|
|
xulWin->GetXULBrowserWindow(getter_AddRefs(xulBrowserWin));
|
|
|
|
NS_ENSURE_TRUE(xulBrowserWin, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsITabParent> newRemoteTab;
|
|
|
|
rv = xulBrowserWin->ForceInitialBrowserRemote(getter_AddRefs(newRemoteTab));
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
2014-06-20 22:07:47 +04:00
|
|
|
|
2015-02-06 00:47:32 +03:00
|
|
|
MOZ_ASSERT(TabParent::GetFrom(newRemoteTab) == newTab);
|
2015-01-16 21:07:50 +03:00
|
|
|
|
|
|
|
aFrameScripts->SwapElements(newTab->mDelayedFrameScripts);
|
2014-06-20 22:07:47 +04:00
|
|
|
return true;
|
2010-01-01 04:35:55 +03:00
|
|
|
}
|
|
|
|
|
2015-01-16 21:07:50 +03:00
|
|
|
TabParent* TabParent::sNextTabParent;
|
|
|
|
|
|
|
|
/* static */ TabParent*
|
|
|
|
TabParent::GetNextTabParent()
|
|
|
|
{
|
|
|
|
TabParent* result = sNextTabParent;
|
|
|
|
sNextTabParent = nullptr;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::SendLoadRemoteScript(const nsString& aURL,
|
|
|
|
const bool& aRunInGlobalScope)
|
|
|
|
{
|
2015-01-23 07:00:18 +03:00
|
|
|
if (mCreatingWindow) {
|
2015-01-16 21:07:50 +03:00
|
|
|
mDelayedFrameScripts.AppendElement(FrameScriptInfo(aURL, aRunInGlobalScope));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(mDelayedFrameScripts.IsEmpty());
|
|
|
|
return PBrowserParent::SendLoadRemoteScript(aURL, aRunInGlobalScope);
|
|
|
|
}
|
|
|
|
|
2015-02-11 14:53:00 +03:00
|
|
|
bool
|
2015-04-24 02:41:00 +03:00
|
|
|
TabParent::InitBrowserConfiguration(const nsCString& aURI,
|
2015-02-11 14:53:00 +03:00
|
|
|
BrowserConfiguration& aConfiguration)
|
|
|
|
{
|
2015-04-24 02:41:00 +03:00
|
|
|
return ContentParent::GetBrowserConfiguration(aURI, aConfiguration);
|
2015-02-11 14:53:00 +03:00
|
|
|
}
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
void
|
|
|
|
TabParent::LoadURL(nsIURI* aURI)
|
|
|
|
{
|
2013-02-16 02:27:21 +04:00
|
|
|
MOZ_ASSERT(aURI);
|
|
|
|
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
2013-02-16 02:27:21 +04:00
|
|
|
return;
|
2012-04-25 20:35:58 +04:00
|
|
|
}
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
nsCString spec;
|
|
|
|
aURI->GetSpec(spec);
|
|
|
|
|
2015-01-23 07:00:18 +03:00
|
|
|
if (mCreatingWindow) {
|
|
|
|
// Don't send the message if the child wants to load its own URL.
|
|
|
|
MOZ_ASSERT(mDelayedURL.IsEmpty());
|
|
|
|
mDelayedURL = spec;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-23 03:17:18 +04:00
|
|
|
uint32_t appId = OwnOrContainingAppId();
|
|
|
|
if (mSendOfflineStatus && NS_IsAppOffline(appId)) {
|
|
|
|
// If the app is offline in the parent process
|
|
|
|
// pass that state to the child process as well
|
|
|
|
unused << SendAppOfflineStatus(appId, true);
|
|
|
|
}
|
|
|
|
mSendOfflineStatus = false;
|
|
|
|
|
2015-02-11 14:53:00 +03:00
|
|
|
// This object contains the configuration for this new app.
|
|
|
|
BrowserConfiguration configuration;
|
2015-04-24 02:41:00 +03:00
|
|
|
if (NS_WARN_IF(!InitBrowserConfiguration(spec, configuration))) {
|
2015-02-11 14:53:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
unused << SendLoadURL(spec, configuration);
|
2013-02-16 02:27:21 +04: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-07-01 00:39:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-05 12:13:05 +03:00
|
|
|
TabParent::Show(const ScreenIntSize& size, bool aParentIsActive)
|
2009-07-01 00:39:22 +04:00
|
|
|
{
|
2012-09-29 06:16:36 +04:00
|
|
|
mDimensions = size;
|
2014-11-16 21:23:22 +03:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextureFactoryIdentifier textureFactoryIdentifier;
|
|
|
|
uint64_t layersId = 0;
|
|
|
|
bool success = false;
|
|
|
|
RenderFrameParent* renderFrame = nullptr;
|
|
|
|
// If TabParent is initialized by parent side then the RenderFrame must also
|
|
|
|
// be created here. If TabParent is initialized by child side,
|
|
|
|
// child side will create RenderFrame.
|
|
|
|
MOZ_ASSERT(!GetRenderFrame());
|
|
|
|
if (IsInitedByParent()) {
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (frameLoader) {
|
|
|
|
renderFrame =
|
|
|
|
new RenderFrameParent(frameLoader,
|
|
|
|
&textureFactoryIdentifier,
|
|
|
|
&layersId,
|
|
|
|
&success);
|
|
|
|
MOZ_ASSERT(success);
|
2014-12-19 02:23:39 +03:00
|
|
|
AddTabParentToTable(layersId, this);
|
2014-11-16 21:23:22 +03:00
|
|
|
unused << SendPRenderFrameConstructor(renderFrame);
|
|
|
|
}
|
2012-11-10 10:09:24 +04:00
|
|
|
}
|
2014-11-24 22:05:35 +03:00
|
|
|
|
2014-12-12 20:50:46 +03:00
|
|
|
TryCacheDPIAndScale();
|
|
|
|
ShowInfo info(EmptyString(), false, false, mDPI, mDefaultScale.scale);
|
|
|
|
|
2014-11-24 22:05:35 +03:00
|
|
|
if (mFrameElement) {
|
|
|
|
nsAutoString name;
|
|
|
|
mFrameElement->GetAttr(kNameSpaceID_None, nsGkAtoms::name, name);
|
|
|
|
bool allowFullscreen =
|
|
|
|
mFrameElement->HasAttr(kNameSpaceID_None, nsGkAtoms::allowfullscreen) ||
|
|
|
|
mFrameElement->HasAttr(kNameSpaceID_None, nsGkAtoms::mozallowfullscreen);
|
|
|
|
bool isPrivate = mFrameElement->HasAttr(kNameSpaceID_None, nsGkAtoms::mozprivatebrowsing);
|
2014-12-12 20:50:46 +03:00
|
|
|
info = ShowInfo(name, allowFullscreen, isPrivate, mDPI, mDefaultScale.scale);
|
2014-11-24 22:05:35 +03:00
|
|
|
}
|
|
|
|
|
2015-02-26 16:47:01 +03:00
|
|
|
unused << SendShow(size, info, textureFactoryIdentifier,
|
2015-05-18 08:42:05 +03:00
|
|
|
layersId, renderFrame, aParentIsActive);
|
2010-08-21 03:24:40 +04:00
|
|
|
}
|
|
|
|
|
2015-01-13 03:41:53 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetDimensions(const uint32_t& aFlags,
|
|
|
|
const int32_t& aX, const int32_t& aY,
|
|
|
|
const int32_t& aCx, const int32_t& aCy)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!(aFlags & nsIEmbeddingSiteWindow::DIM_FLAGS_SIZE_INNER),
|
|
|
|
"We should never see DIM_FLAGS_SIZE_INNER here!");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
NS_ENSURE_TRUE(mFrameElement, true);
|
|
|
|
nsCOMPtr<nsIDocShell> docShell = mFrameElement->OwnerDoc()->GetDocShell();
|
|
|
|
NS_ENSURE_TRUE(docShell, true);
|
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> treeOwner;
|
|
|
|
docShell->GetTreeOwner(getter_AddRefs(treeOwner));
|
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin = do_QueryInterface(treeOwner);
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, true);
|
|
|
|
|
|
|
|
if (aFlags & nsIEmbeddingSiteWindow::DIM_FLAGS_POSITION &&
|
|
|
|
aFlags & nsIEmbeddingSiteWindow::DIM_FLAGS_SIZE_OUTER) {
|
|
|
|
treeOwnerAsWin->SetPositionAndSize(aX, aY, aCx, aCy, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aFlags & nsIEmbeddingSiteWindow::DIM_FLAGS_POSITION) {
|
|
|
|
treeOwnerAsWin->SetPosition(aX, aY);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aFlags & nsIEmbeddingSiteWindow::DIM_FLAGS_SIZE_OUTER) {
|
|
|
|
treeOwnerAsWin->SetSize(aCx, aCy, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(false, "Unknown flags!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-04-21 17:33:56 +03:00
|
|
|
nsresult
|
|
|
|
TabParent::UpdatePosition()
|
|
|
|
{
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (!frameLoader) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
nsIntRect windowDims;
|
|
|
|
NS_ENSURE_SUCCESS(frameLoader->GetWindowDimensions(windowDims), NS_ERROR_FAILURE);
|
|
|
|
UpdateDimensions(windowDims, mDimensions);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-08-21 03:24:40 +04:00
|
|
|
void
|
2015-03-31 23:39:02 +03:00
|
|
|
TabParent::UpdateDimensions(const nsIntRect& rect, const ScreenIntSize& size)
|
2010-08-21 03:24:40 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return;
|
|
|
|
}
|
2012-11-22 06:40:57 +04:00
|
|
|
hal::ScreenConfiguration config;
|
|
|
|
hal::GetCurrentScreenConfiguration(&config);
|
2013-01-29 11:49:38 +04:00
|
|
|
ScreenOrientation orientation = config.orientation();
|
2015-04-21 17:33:56 +03:00
|
|
|
LayoutDeviceIntPoint chromeOffset = -GetChildProcessOffset();
|
2012-11-22 06:40:57 +04:00
|
|
|
|
2015-04-21 17:33:56 +03:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
nsIntRect contentRect = rect;
|
|
|
|
if (widget) {
|
|
|
|
contentRect.x += widget->GetClientOffset().x;
|
|
|
|
contentRect.y += widget->GetClientOffset().y;
|
|
|
|
}
|
|
|
|
|
2013-01-29 11:49:38 +04:00
|
|
|
if (!mUpdatedDimensions || mOrientation != orientation ||
|
2015-04-21 17:33:56 +03:00
|
|
|
mDimensions != size || !mRect.IsEqualEdges(contentRect) ||
|
2015-03-31 23:39:02 +03:00
|
|
|
chromeOffset != mChromeOffset) {
|
|
|
|
|
2013-01-29 11:49:38 +04:00
|
|
|
mUpdatedDimensions = true;
|
2015-03-31 23:39:02 +03:00
|
|
|
mRect = contentRect;
|
2013-01-29 11:49:38 +04:00
|
|
|
mDimensions = size;
|
|
|
|
mOrientation = orientation;
|
2015-03-31 23:39:02 +03:00
|
|
|
mChromeOffset = chromeOffset;
|
2013-01-29 11:49:38 +04:00
|
|
|
|
2015-06-10 22:55:34 +03:00
|
|
|
unused << SendUpdateDimensions(mRect, mDimensions, mOrientation, mChromeOffset);
|
2012-07-20 10:48:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::UpdateFrame(const FrameMetrics& aFrameMetrics)
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendUpdateFrame(aFrameMetrics);
|
|
|
|
}
|
2012-08-09 08:39:02 +04:00
|
|
|
}
|
|
|
|
|
2014-05-23 18:36:50 +04: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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-22 17:58:33 +03:00
|
|
|
void
|
|
|
|
TabParent::ThemeChanged()
|
|
|
|
{
|
|
|
|
if (!mIsDestroyed) {
|
|
|
|
// The theme has changed, and any cached values we had sent down
|
|
|
|
// to the child have been invalidated. When this method is called,
|
|
|
|
// LookAndFeel should have the up-to-date values, which we now
|
|
|
|
// send down to the child. We do this for every remote tab for now,
|
|
|
|
// but bug 1156934 has been filed to do it once per content process.
|
|
|
|
unused << SendThemeChanged(LookAndFeel::GetIntCache());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-20 02:53:30 +03:00
|
|
|
void
|
|
|
|
TabParent::RequestFlingSnap(const FrameMetrics::ViewID& aScrollId,
|
|
|
|
const mozilla::CSSPoint& aDestination)
|
|
|
|
{
|
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendRequestFlingSnap(aScrollId, aDestination);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-06 02:43:20 +04:00
|
|
|
void
|
|
|
|
TabParent::AcknowledgeScrollUpdate(const ViewID& aScrollId, const uint32_t& aScrollGeneration)
|
|
|
|
{
|
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendAcknowledgeScrollUpdate(aScrollId, aScrollGeneration);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-12 23:27:45 +04:00
|
|
|
void TabParent::HandleDoubleTap(const CSSPoint& aPoint,
|
2015-03-03 00:38:07 +03:00
|
|
|
Modifiers aModifiers,
|
2014-02-07 21:13:50 +04:00
|
|
|
const ScrollableLayerGuid &aGuid)
|
2012-08-09 08:39:02 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
2015-03-03 00:41:02 +03:00
|
|
|
unused << SendHandleDoubleTap(aPoint, aModifiers, aGuid);
|
2012-11-10 10:09:24 +04:00
|
|
|
}
|
2009-07-01 00:39:22 +04:00
|
|
|
}
|
|
|
|
|
2014-03-12 23:27:45 +04:00
|
|
|
void TabParent::HandleSingleTap(const CSSPoint& aPoint,
|
2015-03-03 00:38:07 +03:00
|
|
|
Modifiers aModifiers,
|
2014-02-07 21:13:50 +04:00
|
|
|
const ScrollableLayerGuid &aGuid)
|
2012-09-15 05:16:32 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
2015-03-03 00:41:02 +03:00
|
|
|
unused << SendHandleSingleTap(aPoint, aModifiers, aGuid);
|
2012-11-10 10:09:24 +04:00
|
|
|
}
|
2012-09-15 05:16:32 +04:00
|
|
|
}
|
|
|
|
|
2014-03-12 23:27:45 +04:00
|
|
|
void TabParent::HandleLongTap(const CSSPoint& aPoint,
|
2015-03-03 00:38:07 +03:00
|
|
|
Modifiers aModifiers,
|
2014-10-24 21:29:30 +04:00
|
|
|
const ScrollableLayerGuid &aGuid,
|
|
|
|
uint64_t aInputBlockId)
|
2012-11-08 23:35:02 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
2015-03-03 00:41:02 +03:00
|
|
|
unused << SendHandleLongTap(aPoint, aModifiers, aGuid, aInputBlockId);
|
2012-11-10 10:09:24 +04:00
|
|
|
}
|
2012-11-08 23:35:02 +04:00
|
|
|
}
|
|
|
|
|
2014-04-15 21:39:20 +04:00
|
|
|
void TabParent::NotifyAPZStateChange(ViewID aViewId,
|
|
|
|
APZStateChange aChange,
|
|
|
|
int aArg)
|
2013-12-10 07:14:55 +04:00
|
|
|
{
|
|
|
|
if (!mIsDestroyed) {
|
2014-04-15 21:39:20 +04:00
|
|
|
unused << SendNotifyAPZStateChange(aViewId, aChange, aArg);
|
2013-12-10 07:14:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-22 10:42:26 +03:00
|
|
|
void
|
|
|
|
TabParent::NotifyMouseScrollTestEvent(const ViewID& aScrollId, const nsString& aEvent)
|
|
|
|
{
|
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendMouseScrollTestEvent(aScrollId, aEvent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-05 21:14:22 +03:00
|
|
|
void
|
|
|
|
TabParent::Activate()
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
2010-07-19 22:33:33 +04:00
|
|
|
unused << SendActivate();
|
2012-11-10 10:09:24 +04:00
|
|
|
}
|
2009-11-05 21:14:22 +03:00
|
|
|
}
|
|
|
|
|
2011-06-18 04:08:32 +04:00
|
|
|
void
|
|
|
|
TabParent::Deactivate()
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendDeactivate();
|
|
|
|
}
|
2011-06-18 04:08:32 +04:00
|
|
|
}
|
|
|
|
|
2010-08-13 12:06:40 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::Init(nsIDOMWindow *window)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 19:56:38 +04:00
|
|
|
TabParent::GetState(uint32_t *aState)
|
2010-08-13 12:06:40 +04:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aState);
|
2010-09-18 06:11:05 +04:00
|
|
|
NS_WARNING("SecurityState not valid here");
|
2010-11-21 22:21:56 +03:00
|
|
|
*aState = 0;
|
2010-08-13 12:06:40 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-28 09:12:03 +04: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;
|
|
|
|
}
|
|
|
|
|
2015-05-21 20:04:58 +03:00
|
|
|
a11y::PDocAccessibleParent*
|
|
|
|
TabParent::AllocPDocAccessibleParent(PDocAccessibleParent* aParent,
|
|
|
|
const uint64_t&)
|
|
|
|
{
|
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
return new a11y::DocAccessibleParent();
|
|
|
|
#else
|
|
|
|
return nullptr;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPDocAccessibleParent(PDocAccessibleParent* aParent)
|
|
|
|
{
|
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
delete static_cast<a11y::DocAccessibleParent*>(aParent);
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvPDocAccessibleConstructor(PDocAccessibleParent* aDoc,
|
|
|
|
PDocAccessibleParent* aParentDoc,
|
|
|
|
const uint64_t& aParentID)
|
|
|
|
{
|
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
auto doc = static_cast<a11y::DocAccessibleParent*>(aDoc);
|
|
|
|
if (aParentDoc) {
|
|
|
|
MOZ_ASSERT(aParentID);
|
|
|
|
auto parentDoc = static_cast<a11y::DocAccessibleParent*>(aParentDoc);
|
|
|
|
return parentDoc->AddChildDoc(doc, aParentID);
|
|
|
|
} else {
|
|
|
|
MOZ_ASSERT(!aParentID);
|
2015-06-10 21:11:34 +03:00
|
|
|
doc->SetTopLevel();
|
2015-05-21 20:04:58 +03:00
|
|
|
a11y::DocManager::RemoteDocAdded(doc);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-10-27 02:20:53 +04:00
|
|
|
PDocumentRendererParent*
|
2013-07-08 19:48:39 +04:00
|
|
|
TabParent::AllocPDocumentRendererParent(const nsRect& documentRect,
|
2013-12-26 22:06:53 +04:00
|
|
|
const gfx::Matrix& transform,
|
2013-07-08 19:48:39 +04:00
|
|
|
const nsString& bgcolor,
|
|
|
|
const uint32_t& renderFlags,
|
|
|
|
const bool& flushLayout,
|
|
|
|
const nsIntSize& renderSize)
|
2009-10-29 20:58:31 +03:00
|
|
|
{
|
|
|
|
return new DocumentRendererParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 19:48:39 +04:00
|
|
|
TabParent::DeallocPDocumentRendererParent(PDocumentRendererParent* actor)
|
2009-10-29 20:58:31 +03:00
|
|
|
{
|
2009-12-03 11:16:14 +03:00
|
|
|
delete actor;
|
2009-10-29 20:58:31 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-18 04:30:06 +04: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;
|
|
|
|
}
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
auto
|
|
|
|
TabParent::AllocPIndexedDBPermissionRequestParent(const Principal& aPrincipal)
|
|
|
|
-> PIndexedDBPermissionRequestParent*
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrincipal> principal(aPrincipal);
|
|
|
|
if (!principal) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContentParent> manager = Manager();
|
|
|
|
if (manager->IsContentParent()) {
|
|
|
|
if (NS_WARN_IF(!AssertAppPrincipal(manager->AsContentParent(),
|
|
|
|
principal))) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
MOZ_CRASH("Figure out security checks for bridged content!");
|
|
|
|
}
|
|
|
|
|
2015-04-10 19:10:00 +03:00
|
|
|
if (NS_WARN_IF(!mFrameElement)) {
|
2014-09-27 03:21:57 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
2015-04-10 19:10:00 +03:00
|
|
|
mozilla::dom::indexedDB::AllocPIndexedDBPermissionRequestParent(mFrameElement,
|
2014-09-27 03:21:57 +04:00
|
|
|
principal);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvPIndexedDBPermissionRequestConstructor(
|
|
|
|
PIndexedDBPermissionRequestParent* aActor,
|
|
|
|
const Principal& aPrincipal)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aActor);
|
|
|
|
|
|
|
|
return
|
|
|
|
mozilla::dom::indexedDB::RecvPIndexedDBPermissionRequestConstructor(aActor);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPIndexedDBPermissionRequestParent(
|
|
|
|
PIndexedDBPermissionRequestParent* aActor)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aActor);
|
|
|
|
|
|
|
|
return
|
|
|
|
mozilla::dom::indexedDB::DeallocPIndexedDBPermissionRequestParent(aActor);
|
|
|
|
}
|
|
|
|
|
2009-11-05 21:21:09 +03:00
|
|
|
void
|
|
|
|
TabParent::SendMouseEvent(const nsAString& aType, float aX, float aY,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aButton, int32_t aClickCount,
|
|
|
|
int32_t aModifiers, bool aIgnoreRootScrollFrame)
|
2009-11-05 21:21:09 +03:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << PBrowserParent::SendMouseEvent(nsString(aType), aX, aY,
|
|
|
|
aButton, aClickCount,
|
|
|
|
aModifiers, aIgnoreRootScrollFrame);
|
|
|
|
}
|
2009-11-05 21:21:09 +03:00
|
|
|
}
|
|
|
|
|
2010-03-19 09:52:18 +03:00
|
|
|
void
|
|
|
|
TabParent::SendKeyEvent(const nsAString& aType,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aKeyCode,
|
|
|
|
int32_t aCharCode,
|
|
|
|
int32_t aModifiers,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aPreventDefault)
|
2010-03-19 09:52:18 +03:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << PBrowserParent::SendKeyEvent(nsString(aType), aKeyCode, aCharCode,
|
|
|
|
aModifiers, aPreventDefault);
|
|
|
|
}
|
2010-03-19 09:52:18 +03:00
|
|
|
}
|
|
|
|
|
2013-10-02 10:38:27 +04:00
|
|
|
bool TabParent::SendRealMouseEvent(WidgetMouseEvent& event)
|
2011-06-22 04:32:43 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-17 05:35:03 +03:00
|
|
|
event.refPoint += GetChildProcessOffset();
|
2015-04-15 02:29:10 +03:00
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
2015-05-22 09:00:00 +03:00
|
|
|
// When we mouseenter the tab, the tab's cursor should
|
|
|
|
// become the current cursor. When we mouseexit, we stop.
|
|
|
|
if (NS_MOUSE_ENTER_WIDGET == event.message) {
|
2015-04-15 02:29:10 +03:00
|
|
|
mTabSetsCursor = true;
|
2015-05-20 04:28:57 +03:00
|
|
|
if (mCustomCursor) {
|
|
|
|
widget->SetCursor(mCustomCursor, mCustomCursorHotspotX, mCustomCursorHotspotY);
|
|
|
|
} else if (mCursor != nsCursor(-1)) {
|
2015-04-15 02:29:10 +03:00
|
|
|
widget->SetCursor(mCursor);
|
|
|
|
}
|
2015-05-22 09:00:00 +03:00
|
|
|
} else if (NS_MOUSE_EXIT_WIDGET == event.message) {
|
2015-04-15 02:29:10 +03:00
|
|
|
mTabSetsCursor = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-22 09:00:00 +03:00
|
|
|
if (NS_MOUSE_MOVE == event.message) {
|
2015-02-14 02:34:04 +03:00
|
|
|
return SendRealMouseMoveEvent(event);
|
|
|
|
}
|
|
|
|
return SendRealMouseButtonEvent(event);
|
2011-06-22 04:32:43 +04:00
|
|
|
}
|
|
|
|
|
2015-02-17 05:41:48 +03:00
|
|
|
LayoutDeviceToCSSScale
|
|
|
|
TabParent::GetLayoutDeviceToCSSScale()
|
2013-12-06 03:17:37 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
2015-02-17 05:41:48 +03:00
|
|
|
nsIDocument* doc = (content ? content->OwnerDoc() : nullptr);
|
|
|
|
nsIPresShell* shell = (doc ? doc->GetShell() : nullptr);
|
|
|
|
nsPresContext* ctx = (shell ? shell->GetPresContext() : nullptr);
|
|
|
|
return LayoutDeviceToCSSScale(ctx
|
|
|
|
? (float)ctx->AppUnitsPerDevPixel() / nsPresContext::AppUnitsPerCSSPixel()
|
|
|
|
: 0.0f);
|
|
|
|
}
|
2013-12-06 03:17:37 +04:00
|
|
|
|
2015-04-08 21:48:11 +03:00
|
|
|
bool
|
|
|
|
TabParent::SendRealDragEvent(WidgetDragEvent& event, uint32_t aDragAction,
|
|
|
|
uint32_t aDropEffect)
|
|
|
|
{
|
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
event.refPoint += GetChildProcessOffset();
|
|
|
|
return PBrowserParent::SendRealDragEvent(event, aDragAction, aDropEffect);
|
|
|
|
}
|
|
|
|
|
2015-02-17 05:41:48 +03:00
|
|
|
CSSPoint TabParent::AdjustTapToChildWidget(const CSSPoint& aPoint)
|
|
|
|
{
|
2015-04-09 06:39:28 +03:00
|
|
|
return aPoint + (LayoutDevicePoint(GetChildProcessOffset()) * GetLayoutDeviceToCSSScale());
|
2013-12-06 03:17:37 +04:00
|
|
|
}
|
|
|
|
|
2015-03-03 00:41:02 +03:00
|
|
|
bool TabParent::SendHandleSingleTap(const CSSPoint& aPoint, const Modifiers& aModifiers, const ScrollableLayerGuid& aGuid)
|
2013-12-06 03:17:37 +04:00
|
|
|
{
|
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-03 00:41:02 +03:00
|
|
|
return PBrowserParent::SendHandleSingleTap(AdjustTapToChildWidget(aPoint), aModifiers, aGuid);
|
2013-12-06 03:17:37 +04:00
|
|
|
}
|
|
|
|
|
2015-03-03 00:41:02 +03:00
|
|
|
bool TabParent::SendHandleLongTap(const CSSPoint& aPoint, const Modifiers& aModifiers, const ScrollableLayerGuid& aGuid, const uint64_t& aInputBlockId)
|
2013-12-06 03:17:37 +04:00
|
|
|
{
|
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-03 00:41:02 +03:00
|
|
|
return PBrowserParent::SendHandleLongTap(AdjustTapToChildWidget(aPoint), aModifiers, aGuid, aInputBlockId);
|
2013-12-06 03:17:37 +04:00
|
|
|
}
|
|
|
|
|
2015-03-03 00:41:02 +03:00
|
|
|
bool TabParent::SendHandleDoubleTap(const CSSPoint& aPoint, const Modifiers& aModifiers, const ScrollableLayerGuid& aGuid)
|
2013-12-06 03:17:37 +04:00
|
|
|
{
|
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-03 00:41:02 +03:00
|
|
|
return PBrowserParent::SendHandleDoubleTap(AdjustTapToChildWidget(aPoint), aModifiers, aGuid);
|
2013-12-06 03:17:37 +04:00
|
|
|
}
|
|
|
|
|
2013-10-16 13:37:36 +04:00
|
|
|
bool TabParent::SendMouseWheelEvent(WidgetWheelEvent& event)
|
2012-08-12 05:42:34 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-12-09 13:40:26 +03:00
|
|
|
|
|
|
|
ScrollableLayerGuid guid;
|
|
|
|
uint64_t blockId;
|
2015-05-14 15:16:00 +03:00
|
|
|
ApzAwareEventRoutingToChild(&guid, &blockId, nullptr);
|
2015-02-17 05:35:03 +03:00
|
|
|
event.refPoint += GetChildProcessOffset();
|
2014-12-09 13:40:26 +03:00
|
|
|
return PBrowserParent::SendMouseWheelEvent(event, guid, blockId);
|
2012-08-12 05:42:34 +04:00
|
|
|
}
|
|
|
|
|
2015-03-25 01:00:52 +03:00
|
|
|
bool TabParent::RecvDispatchWheelEvent(const mozilla::WidgetWheelEvent& aEvent)
|
2015-03-07 01:26:59 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
WidgetWheelEvent localEvent(aEvent);
|
|
|
|
localEvent.widget = widget;
|
2015-03-07 01:26:59 +03:00
|
|
|
localEvent.refPoint -= GetChildProcessOffset();
|
2015-03-07 01:26:59 +03:00
|
|
|
|
|
|
|
widget->DispatchAPZAwareEvent(&localEvent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-25 01:00:52 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvDispatchMouseEvent(const mozilla::WidgetMouseEvent& aEvent)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
WidgetMouseEvent localEvent(aEvent);
|
|
|
|
localEvent.widget = widget;
|
|
|
|
localEvent.refPoint -= GetChildProcessOffset();
|
|
|
|
|
|
|
|
widget->DispatchInputEvent(&localEvent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvDispatchKeyboardEvent(const mozilla::WidgetKeyboardEvent& aEvent)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
WidgetKeyboardEvent localEvent(aEvent);
|
|
|
|
localEvent.widget = widget;
|
|
|
|
localEvent.refPoint -= GetChildProcessOffset();
|
|
|
|
|
|
|
|
widget->DispatchInputEvent(&localEvent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-20 19:46:29 +04:00
|
|
|
static void
|
|
|
|
DoCommandCallback(mozilla::Command aCommand, void* aData)
|
|
|
|
{
|
|
|
|
static_cast<InfallibleTArray<mozilla::CommandInt>*>(aData)->AppendElement(aCommand);
|
|
|
|
}
|
|
|
|
|
2014-04-22 00:40:09 +04: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;
|
|
|
|
}
|
|
|
|
|
2015-04-14 18:36:36 +03:00
|
|
|
class SynthesizedEventObserver : public nsIObserver
|
|
|
|
{
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
public:
|
|
|
|
SynthesizedEventObserver(TabParent* aTabParent, const uint64_t& aObserverId)
|
|
|
|
: mTabParent(aTabParent)
|
|
|
|
, mObserverId(aObserverId)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mTabParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP Observe(nsISupports* aSubject,
|
|
|
|
const char* aTopic,
|
2015-04-15 19:04:12 +03:00
|
|
|
const char16_t* aData) override
|
2015-04-14 18:36:36 +03:00
|
|
|
{
|
|
|
|
if (!mTabParent) {
|
|
|
|
// We already sent the notification
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mTabParent->SendNativeSynthesisResponse(mObserverId, nsCString(aTopic))) {
|
|
|
|
NS_WARNING("Unable to send native event synthesization response!");
|
|
|
|
}
|
|
|
|
// Null out tabparent to indicate we already sent the response
|
|
|
|
mTabParent = nullptr;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~SynthesizedEventObserver() { }
|
|
|
|
|
|
|
|
nsRefPtr<TabParent> mTabParent;
|
|
|
|
uint64_t mObserverId;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(SynthesizedEventObserver, nsIObserver)
|
|
|
|
|
|
|
|
class MOZ_STACK_CLASS AutoSynthesizedEventResponder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AutoSynthesizedEventResponder(TabParent* aTabParent,
|
|
|
|
const uint64_t& aObserverId,
|
|
|
|
const char* aTopic)
|
|
|
|
: mObserver(new SynthesizedEventObserver(aTabParent, aObserverId))
|
|
|
|
, mTopic(aTopic)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
~AutoSynthesizedEventResponder()
|
|
|
|
{
|
|
|
|
// This may be a no-op if the observer already sent a response.
|
|
|
|
mObserver->Observe(nullptr, mTopic, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIObserver* GetObserver()
|
|
|
|
{
|
|
|
|
return mObserver;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsCOMPtr<nsIObserver> mObserver;
|
|
|
|
const char* mTopic;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvSynthesizeNativeKeyEvent(const int32_t& aNativeKeyboardLayout,
|
|
|
|
const int32_t& aNativeKeyCode,
|
|
|
|
const uint32_t& aModifierFlags,
|
|
|
|
const nsString& aCharacters,
|
|
|
|
const nsString& aUnmodifiedCharacters,
|
|
|
|
const uint64_t& aObserverId)
|
|
|
|
{
|
|
|
|
AutoSynthesizedEventResponder responder(this, aObserverId, "keyevent");
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
widget->SynthesizeNativeKeyEvent(aNativeKeyboardLayout, aNativeKeyCode,
|
|
|
|
aModifierFlags, aCharacters, aUnmodifiedCharacters,
|
|
|
|
responder.GetObserver());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvSynthesizeNativeMouseEvent(const LayoutDeviceIntPoint& aPoint,
|
|
|
|
const uint32_t& aNativeMessage,
|
|
|
|
const uint32_t& aModifierFlags,
|
|
|
|
const uint64_t& aObserverId)
|
|
|
|
{
|
|
|
|
AutoSynthesizedEventResponder responder(this, aObserverId, "mouseevent");
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
widget->SynthesizeNativeMouseEvent(aPoint, aNativeMessage, aModifierFlags,
|
|
|
|
responder.GetObserver());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvSynthesizeNativeMouseMove(const LayoutDeviceIntPoint& aPoint,
|
|
|
|
const uint64_t& aObserverId)
|
|
|
|
{
|
|
|
|
AutoSynthesizedEventResponder responder(this, aObserverId, "mousemove");
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
widget->SynthesizeNativeMouseMove(aPoint, responder.GetObserver());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvSynthesizeNativeMouseScrollEvent(const LayoutDeviceIntPoint& aPoint,
|
|
|
|
const uint32_t& aNativeMessage,
|
|
|
|
const double& aDeltaX,
|
|
|
|
const double& aDeltaY,
|
|
|
|
const double& aDeltaZ,
|
|
|
|
const uint32_t& aModifierFlags,
|
|
|
|
const uint32_t& aAdditionalFlags,
|
|
|
|
const uint64_t& aObserverId)
|
|
|
|
{
|
|
|
|
AutoSynthesizedEventResponder responder(this, aObserverId, "mousescrollevent");
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
widget->SynthesizeNativeMouseScrollEvent(aPoint, aNativeMessage,
|
|
|
|
aDeltaX, aDeltaY, aDeltaZ, aModifierFlags, aAdditionalFlags,
|
|
|
|
responder.GetObserver());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvSynthesizeNativeTouchPoint(const uint32_t& aPointerId,
|
|
|
|
const TouchPointerState& aPointerState,
|
|
|
|
const nsIntPoint& aPointerScreenPoint,
|
|
|
|
const double& aPointerPressure,
|
|
|
|
const uint32_t& aPointerOrientation,
|
|
|
|
const uint64_t& aObserverId)
|
|
|
|
{
|
|
|
|
AutoSynthesizedEventResponder responder(this, aObserverId, "touchpoint");
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
widget->SynthesizeNativeTouchPoint(aPointerId, aPointerState, aPointerScreenPoint,
|
|
|
|
aPointerPressure, aPointerOrientation, responder.GetObserver());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvSynthesizeNativeTouchTap(const nsIntPoint& aPointerScreenPoint,
|
|
|
|
const bool& aLongTap,
|
|
|
|
const uint64_t& aObserverId)
|
|
|
|
{
|
|
|
|
AutoSynthesizedEventResponder responder(this, aObserverId, "touchtap");
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
widget->SynthesizeNativeTouchTap(aPointerScreenPoint, aLongTap,
|
|
|
|
responder.GetObserver());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvClearNativeTouchSequence(const uint64_t& aObserverId)
|
|
|
|
{
|
|
|
|
AutoSynthesizedEventResponder responder(this, aObserverId, "cleartouch");
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
widget->ClearNativeTouchSequence(responder.GetObserver());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-01 11:22:58 +04:00
|
|
|
bool TabParent::SendRealKeyEvent(WidgetKeyboardEvent& event)
|
2011-06-22 04:32:43 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-17 05:35:03 +03:00
|
|
|
event.refPoint += GetChildProcessOffset();
|
2014-03-20 19:46:29 +04: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 04:32:43 +04:00
|
|
|
}
|
|
|
|
|
2013-09-27 10:20:57 +04:00
|
|
|
bool TabParent::SendRealTouchEvent(WidgetTouchEvent& event)
|
2012-07-16 06:58:43 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-12 00:05:52 +04:00
|
|
|
|
2014-01-27 21:41:12 +04: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 23:54:00 +04:00
|
|
|
if (event.message == NS_TOUCH_END || event.message == NS_TOUCH_CANCEL) {
|
2014-01-27 21:41:12 +04:00
|
|
|
for (int i = event.touches.Length() - 1; i >= 0; i--) {
|
|
|
|
if (!event.touches[i]->mChanged) {
|
|
|
|
event.touches.RemoveElementAt(i);
|
2012-12-20 23:54:00 +04:00
|
|
|
}
|
2012-08-29 20:06:11 +04:00
|
|
|
}
|
|
|
|
}
|
2012-09-12 00:05:52 +04:00
|
|
|
|
2013-11-13 22:20:31 +04:00
|
|
|
ScrollableLayerGuid guid;
|
2014-10-24 21:29:30 +04:00
|
|
|
uint64_t blockId;
|
2015-05-14 15:16:00 +03:00
|
|
|
nsEventStatus apzResponse;
|
|
|
|
ApzAwareEventRoutingToChild(&guid, &blockId, &apzResponse);
|
2013-08-14 18:15:27 +04:00
|
|
|
|
2015-02-07 00:46:46 +03:00
|
|
|
if (mIsDestroyed) {
|
2014-01-16 03:07:18 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-17 05:35:03 +03:00
|
|
|
LayoutDeviceIntPoint offset = GetChildProcessOffset();
|
|
|
|
for (uint32_t i = 0; i < event.touches.Length(); i++) {
|
|
|
|
event.touches[i]->mRefPoint += offset;
|
|
|
|
}
|
2013-08-14 18:15:27 +04:00
|
|
|
|
2014-03-11 01:59:46 +04:00
|
|
|
return (event.message == NS_TOUCH_MOVE) ?
|
2015-05-14 15:16:00 +03:00
|
|
|
PBrowserParent::SendRealTouchMoveEvent(event, guid, blockId, apzResponse) :
|
|
|
|
PBrowserParent::SendRealTouchEvent(event, guid, blockId, apzResponse);
|
2012-07-16 06:58:43 +04:00
|
|
|
}
|
|
|
|
|
2010-02-20 20:05:20 +03:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::RecvSyncMessage(const nsString& aMessage,
|
2012-08-02 10:02:29 +04:00
|
|
|
const ClonedMessageData& aData,
|
2015-01-16 22:58:52 +03:00
|
|
|
InfallibleTArray<CpowEntry>&& aCpows,
|
2013-11-06 21:21:15 +04:00
|
|
|
const IPC::Principal& aPrincipal,
|
2015-04-30 06:39:59 +03:00
|
|
|
nsTArray<OwningSerializedStructuredCloneBuffer>* aRetVal)
|
2010-02-20 20:05:20 +03:00
|
|
|
{
|
2014-06-11 09:44:03 +04:00
|
|
|
// FIXME Permission check for TabParent in Content process
|
2013-11-06 21:21:17 +04:00
|
|
|
nsIPrincipal* principal = aPrincipal;
|
2014-06-14 11:32:24 +04:00
|
|
|
if (Manager()->IsContentParent()) {
|
|
|
|
ContentParent* parent = Manager()->AsContentParent();
|
|
|
|
if (!ContentParent::IgnoreIPCPrincipal() &&
|
|
|
|
parent && principal && !AssertAppPrincipal(parent, principal)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-06 21:21:17 +04:00
|
|
|
}
|
|
|
|
|
2013-01-24 20:24:19 +04:00
|
|
|
StructuredCloneData cloneData = ipc::UnpackClonedMessageDataForParent(aData);
|
2015-01-27 00:32:31 +03:00
|
|
|
CrossProcessCpowHolder cpows(Manager(), aCpows);
|
2015-04-30 06:39:59 +03:00
|
|
|
return ReceiveMessage(aMessage, true, &cloneData, &cpows, aPrincipal, aRetVal);
|
2010-02-20 20:05:20 +03:00
|
|
|
}
|
|
|
|
|
2013-10-01 20:15:06 +04:00
|
|
|
bool
|
2014-10-08 08:32:45 +04:00
|
|
|
TabParent::RecvRpcMessage(const nsString& aMessage,
|
|
|
|
const ClonedMessageData& aData,
|
2015-01-16 22:58:52 +03:00
|
|
|
InfallibleTArray<CpowEntry>&& aCpows,
|
2014-10-08 08:32:45 +04:00
|
|
|
const IPC::Principal& aPrincipal,
|
2015-04-30 06:39:59 +03:00
|
|
|
nsTArray<OwningSerializedStructuredCloneBuffer>* aRetVal)
|
2013-10-01 20:15:06 +04:00
|
|
|
{
|
2014-06-11 09:44:03 +04:00
|
|
|
// FIXME Permission check for TabParent in Content process
|
2013-11-06 21:21:17 +04:00
|
|
|
nsIPrincipal* principal = aPrincipal;
|
2014-06-14 11:32:24 +04:00
|
|
|
if (Manager()->IsContentParent()) {
|
|
|
|
ContentParent* parent = Manager()->AsContentParent();
|
|
|
|
if (!ContentParent::IgnoreIPCPrincipal() &&
|
|
|
|
parent && principal && !AssertAppPrincipal(parent, principal)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-06 21:21:17 +04:00
|
|
|
}
|
|
|
|
|
2013-10-01 20:15:06 +04:00
|
|
|
StructuredCloneData cloneData = ipc::UnpackClonedMessageDataForParent(aData);
|
2015-01-27 00:32:31 +03:00
|
|
|
CrossProcessCpowHolder cpows(Manager(), aCpows);
|
2015-04-30 06:39:59 +03:00
|
|
|
return ReceiveMessage(aMessage, true, &cloneData, &cpows, aPrincipal, aRetVal);
|
2013-10-01 20:15:06 +04:00
|
|
|
}
|
|
|
|
|
2010-02-20 20:05:20 +03:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::RecvAsyncMessage(const nsString& aMessage,
|
2013-07-11 02:05:39 +04:00
|
|
|
const ClonedMessageData& aData,
|
2015-01-16 22:58:52 +03:00
|
|
|
InfallibleTArray<CpowEntry>&& aCpows,
|
2013-11-06 21:21:15 +04:00
|
|
|
const IPC::Principal& aPrincipal)
|
2012-08-02 10:02:29 +04:00
|
|
|
{
|
2014-06-11 09:44:03 +04:00
|
|
|
// FIXME Permission check for TabParent in Content process
|
2013-11-06 21:21:17 +04:00
|
|
|
nsIPrincipal* principal = aPrincipal;
|
2014-06-14 11:32:24 +04:00
|
|
|
if (Manager()->IsContentParent()) {
|
|
|
|
ContentParent* parent = Manager()->AsContentParent();
|
|
|
|
if (!ContentParent::IgnoreIPCPrincipal() &&
|
|
|
|
parent && principal && !AssertAppPrincipal(parent, principal)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-06 21:21:17 +04:00
|
|
|
}
|
|
|
|
|
2013-01-24 20:24:19 +04:00
|
|
|
StructuredCloneData cloneData = ipc::UnpackClonedMessageDataForParent(aData);
|
2015-01-27 00:32:31 +03:00
|
|
|
CrossProcessCpowHolder cpows(Manager(), aCpows);
|
2013-11-06 21:21:15 +04:00
|
|
|
return ReceiveMessage(aMessage, false, &cloneData, &cpows, aPrincipal, nullptr);
|
2010-03-30 00:29:45 +04:00
|
|
|
}
|
|
|
|
|
2011-06-22 04:32:43 +04:00
|
|
|
bool
|
2014-05-28 05:12:29 +04:00
|
|
|
TabParent::RecvSetCursor(const uint32_t& aCursor, const bool& aForce)
|
2011-06-22 04:32:43 +04:00
|
|
|
{
|
2015-04-15 02:29:10 +03:00
|
|
|
mCursor = static_cast<nsCursor>(aCursor);
|
2015-05-20 04:28:57 +03:00
|
|
|
mCustomCursor = nullptr;
|
2015-04-15 02:29:10 +03:00
|
|
|
|
2011-06-22 04:32:43 +04:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
2014-05-28 05:12:29 +04:00
|
|
|
if (aForce) {
|
|
|
|
widget->ClearCachedCursor();
|
|
|
|
}
|
2015-04-15 02:29:10 +03:00
|
|
|
if (mTabSetsCursor) {
|
|
|
|
widget->SetCursor(mCursor);
|
|
|
|
}
|
2011-06-22 04:32:43 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-20 04:28:57 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetCustomCursor(const nsCString& aCursorData,
|
|
|
|
const uint32_t& aWidth,
|
|
|
|
const uint32_t& aHeight,
|
|
|
|
const uint32_t& aStride,
|
|
|
|
const uint8_t& aFormat,
|
|
|
|
const uint32_t& aHotspotX,
|
|
|
|
const uint32_t& aHotspotY,
|
|
|
|
const bool& aForce)
|
|
|
|
{
|
|
|
|
mCursor = nsCursor(-1);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
if (aForce) {
|
|
|
|
widget->ClearCachedCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mTabSetsCursor) {
|
|
|
|
const gfxIntSize size(aWidth, aHeight);
|
|
|
|
|
|
|
|
mozilla::RefPtr<gfx::DataSourceSurface> customCursor = new mozilla::gfx::SourceSurfaceRawData();
|
|
|
|
mozilla::gfx::SourceSurfaceRawData* raw = static_cast<mozilla::gfx::SourceSurfaceRawData*>(customCursor.get());
|
|
|
|
raw->InitWrappingData(
|
|
|
|
reinterpret_cast<uint8_t*>(const_cast<nsCString&>(aCursorData).BeginWriting()),
|
|
|
|
size, aStride, static_cast<mozilla::gfx::SurfaceFormat>(aFormat), false);
|
|
|
|
raw->GuaranteePersistance();
|
|
|
|
|
|
|
|
nsRefPtr<gfxDrawable> drawable = new gfxSurfaceDrawable(customCursor, size);
|
|
|
|
nsCOMPtr<imgIContainer> cursorImage(image::ImageOps::CreateFromDrawable(drawable));
|
|
|
|
widget->SetCursor(cursorImage, aHotspotX, aHotspotY);
|
|
|
|
mCustomCursor = cursorImage;
|
|
|
|
mCustomCursorHotspotX = aHotspotX;
|
|
|
|
mCustomCursorHotspotY = aHotspotY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-21 02:17:09 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetBackgroundColor(const nscolor& aColor)
|
|
|
|
{
|
2012-07-20 10:48:27 +04:00
|
|
|
if (RenderFrameParent* frame = GetRenderFrame()) {
|
|
|
|
frame->SetBackgroundColor(aColor);
|
2011-10-21 02:17:09 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-23 00:27:23 +04: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 23:45:31 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetStatus(const uint32_t& aType, const nsString& aStatus)
|
|
|
|
{
|
2014-01-23 00:27:23 +04:00
|
|
|
nsCOMPtr<nsIXULBrowserWindow> xulBrowserWindow = GetXULBrowserWindow();
|
|
|
|
if (!xulBrowserWindow) {
|
|
|
|
return true;
|
2013-07-25 23:45:31 +04:00
|
|
|
}
|
2014-01-23 00:27:23 +04: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 23:45:31 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
bool
|
2011-09-29 10:19:26 +04:00
|
|
|
TabParent::RecvNotifyIMEFocus(const bool& aFocus,
|
2015-06-05 12:28:20 +03:00
|
|
|
const ContentCache& aContentCache,
|
2015-05-28 07:51:40 +03:00
|
|
|
nsIMEUpdatePreference* aPreference)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2012-11-13 17:04:44 +04:00
|
|
|
if (!widget) {
|
2014-02-26 04:48:02 +04:00
|
|
|
*aPreference = nsIMEUpdatePreference();
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
2012-11-13 17:04:44 +04:00
|
|
|
}
|
2010-09-24 07:28:15 +04:00
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
mIMETabParent = aFocus ? this : nullptr;
|
2015-06-05 12:28:20 +03:00
|
|
|
IMENotification notification(aFocus ? NOTIFY_IME_OF_FOCUS :
|
|
|
|
NOTIFY_IME_OF_BLUR);
|
|
|
|
mContentCache.AssignContent(aContentCache, ¬ification);
|
|
|
|
widget->NotifyIME(notification);
|
2010-09-24 07:28:15 +04:00
|
|
|
|
|
|
|
if (aFocus) {
|
2012-11-13 17:04:44 +04:00
|
|
|
*aPreference = widget->GetIMEUpdatePreference();
|
2010-09-24 07:28:15 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2015-06-05 12:28:20 +03:00
|
|
|
TabParent::RecvNotifyIMETextChange(const ContentCache& aContentCache,
|
|
|
|
const uint32_t& aStart,
|
2012-08-22 19:56:38 +04:00
|
|
|
const uint32_t& aEnd,
|
2014-02-26 04:48:02 +04:00
|
|
|
const uint32_t& aNewEnd,
|
|
|
|
const bool& aCausedByComposition)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2014-02-26 04:48:02 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
nsIMEUpdatePreference updatePreference = widget->GetIMEUpdatePreference();
|
|
|
|
NS_ASSERTION(updatePreference.WantTextChange(),
|
2014-01-29 13:32:39 +04:00
|
|
|
"Don't call Send/RecvNotifyIMETextChange without NOTIFY_TEXT_CHANGE");
|
2014-02-26 04:48:02 +04:00
|
|
|
MOZ_ASSERT(!aCausedByComposition ||
|
|
|
|
updatePreference.WantChangesCausedByComposition(),
|
|
|
|
"The widget doesn't want text change notification caused by composition");
|
|
|
|
#endif
|
2014-01-29 13:32:39 +04:00
|
|
|
|
2014-02-18 04:00:15 +04:00
|
|
|
IMENotification notification(NOTIFY_IME_OF_TEXT_CHANGE);
|
|
|
|
notification.mTextChangeData.mStartOffset = aStart;
|
|
|
|
notification.mTextChangeData.mOldEndOffset = aEnd;
|
|
|
|
notification.mTextChangeData.mNewEndOffset = aNewEnd;
|
2014-02-26 04:48:02 +04:00
|
|
|
notification.mTextChangeData.mCausedByComposition = aCausedByComposition;
|
2015-06-05 12:28:20 +03:00
|
|
|
|
|
|
|
mContentCache.AssignContent(aContentCache, ¬ification);
|
2014-02-18 04:00:15 +04:00
|
|
|
widget->NotifyIME(notification);
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-07 04:11:11 +04:00
|
|
|
bool
|
2014-09-15 11:11:08 +04:00
|
|
|
TabParent::RecvNotifyIMESelectedCompositionRect(
|
2015-06-05 12:28:20 +03:00
|
|
|
const ContentCache& aContentCache)
|
2013-11-07 04:11:11 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-06-05 12:28:20 +03:00
|
|
|
|
2015-06-05 12:28:20 +03:00
|
|
|
IMENotification notification(NOTIFY_IME_OF_COMPOSITION_UPDATE);
|
|
|
|
mContentCache.AssignContent(aContentCache, ¬ification);
|
2015-06-05 12:28:20 +03:00
|
|
|
|
2015-06-05 12:28:20 +03:00
|
|
|
widget->NotifyIME(notification);
|
2013-11-07 04:11:11 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
bool
|
2015-06-05 12:28:20 +03:00
|
|
|
TabParent::RecvNotifyIMESelection(const ContentCache& aContentCache,
|
2014-02-26 04:48:02 +04:00
|
|
|
const bool& aCausedByComposition)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2015-06-05 12:28:20 +03:00
|
|
|
IMENotification notification(NOTIFY_IME_OF_SELECTION_CHANGE);
|
|
|
|
mContentCache.AssignContent(aContentCache, ¬ification);
|
2015-06-05 12:28:20 +03:00
|
|
|
|
2015-05-28 07:51:40 +03:00
|
|
|
const nsIMEUpdatePreference updatePreference =
|
|
|
|
widget->GetIMEUpdatePreference();
|
|
|
|
if (updatePreference.WantSelectionChange() &&
|
|
|
|
(updatePreference.WantChangesCausedByComposition() ||
|
|
|
|
!aCausedByComposition)) {
|
2015-06-05 12:28:20 +03:00
|
|
|
mContentCache.InitNotification(notification);
|
|
|
|
notification.mSelectionChangeData.mCausedByComposition =
|
|
|
|
aCausedByComposition;
|
|
|
|
widget->NotifyIME(notification);
|
2010-10-01 18:17:37 +04:00
|
|
|
}
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2015-06-05 12:28:20 +03:00
|
|
|
TabParent::RecvUpdateContentCache(const ContentCache& aContentCache)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
2015-06-05 12:28:20 +03:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-05 12:28:20 +03:00
|
|
|
mContentCache.AssignContent(aContentCache);
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-09-11 17:46:17 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvNotifyIMEMouseButtonEvent(
|
|
|
|
const IMENotification& aIMENotification,
|
|
|
|
bool* aConsumedByIME)
|
|
|
|
{
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
*aConsumedByIME = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
nsresult rv = widget->NotifyIME(aIMENotification);
|
|
|
|
*aConsumedByIME = rv == NS_SUCCESS_EVENT_CONSUMED;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-12-15 12:37:00 +03:00
|
|
|
bool
|
2015-06-05 12:28:20 +03:00
|
|
|
TabParent::RecvNotifyIMEPositionChange(const ContentCache& aContentCache)
|
2014-12-15 12:37:00 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-05 12:28:20 +03:00
|
|
|
IMENotification notification(NOTIFY_IME_OF_POSITION_CHANGE);
|
|
|
|
mContentCache.AssignContent(aContentCache, ¬ification);
|
2015-06-05 12:28:20 +03:00
|
|
|
|
2014-12-15 12:37:00 +03:00
|
|
|
const nsIMEUpdatePreference updatePreference =
|
|
|
|
widget->GetIMEUpdatePreference();
|
|
|
|
if (updatePreference.WantPositionChanged()) {
|
2015-06-05 12:28:20 +03:00
|
|
|
widget->NotifyIME(notification);
|
2014-12-15 12:37:00 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-21 02:07:51 +04: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;
|
|
|
|
}
|
|
|
|
|
2014-12-09 18:48:27 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvEnableDisableCommands(const nsString& aAction,
|
2015-01-16 22:58:52 +03:00
|
|
|
nsTArray<nsCString>&& aEnabledCommands,
|
|
|
|
nsTArray<nsCString>&& aDisabledCommands)
|
2014-12-09 18:48:27 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIRemoteBrowser> remoteBrowser = do_QueryInterface(mFrameElement);
|
|
|
|
if (remoteBrowser) {
|
|
|
|
nsAutoArrayPtr<const char*> enabledCommands, disabledCommands;
|
|
|
|
|
|
|
|
if (aEnabledCommands.Length()) {
|
|
|
|
enabledCommands = new const char* [aEnabledCommands.Length()];
|
|
|
|
for (uint32_t c = 0; c < aEnabledCommands.Length(); c++) {
|
|
|
|
enabledCommands[c] = aEnabledCommands[c].get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aDisabledCommands.Length()) {
|
|
|
|
disabledCommands = new const char* [aDisabledCommands.Length()];
|
|
|
|
for (uint32_t c = 0; c < aDisabledCommands.Length(); c++) {
|
|
|
|
disabledCommands[c] = aDisabledCommands[c].get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
remoteBrowser->EnableDisableCommands(aAction,
|
|
|
|
aEnabledCommands.Length(), enabledCommands,
|
|
|
|
aDisabledCommands.Length(), disabledCommands);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:51:49 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetTabOffset(LayoutDeviceIntPoint* aPoint)
|
|
|
|
{
|
|
|
|
*aPoint = GetChildProcessOffset();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-02-17 05:41:49 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::GetChildProcessOffset(int32_t* aOutCssX, int32_t* aOutCssY)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aOutCssX);
|
|
|
|
NS_ENSURE_ARG(aOutCssY);
|
|
|
|
CSSPoint offset = LayoutDevicePoint(GetChildProcessOffset())
|
|
|
|
* GetLayoutDeviceToCSSScale();
|
|
|
|
*aOutCssX = offset.x;
|
|
|
|
*aOutCssY = offset.y;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-02-15 21:52:28 +03:00
|
|
|
LayoutDeviceIntPoint
|
2013-11-22 06:58:20 +04:00
|
|
|
TabParent::GetChildProcessOffset()
|
|
|
|
{
|
|
|
|
// The "toplevel widget" in child processes is always at position
|
|
|
|
// 0,0. Map the event coordinates to match that.
|
|
|
|
|
2015-02-15 21:52:28 +03:00
|
|
|
LayoutDeviceIntPoint offset(0, 0);
|
2013-11-22 06:58:20 +04:00
|
|
|
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,
|
2015-02-02 01:27:31 +03:00
|
|
|
LayoutDeviceIntPoint(0, 0),
|
2013-11-22 06:58:20 +04:00
|
|
|
targetFrame);
|
|
|
|
|
2015-02-15 21:52:28 +03:00
|
|
|
return LayoutDeviceIntPoint::FromAppUnitsToNearest(
|
|
|
|
pt, targetFrame->PresContext()->AppUnitsPerDevPixel());
|
2013-11-22 06:58:20 +04:00
|
|
|
}
|
|
|
|
|
2014-03-18 19:16:47 +04: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;
|
|
|
|
}
|
|
|
|
|
2014-11-03 10:05:38 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvDispatchAfterKeyboardEvent(const WidgetKeyboardEvent& aEvent)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mFrameElement, true);
|
|
|
|
|
|
|
|
WidgetKeyboardEvent localEvent(aEvent);
|
|
|
|
localEvent.widget = GetWidget();
|
|
|
|
|
|
|
|
nsIDocument* doc = mFrameElement->OwnerDoc();
|
|
|
|
nsCOMPtr<nsIPresShell> presShell = doc->GetShell();
|
|
|
|
NS_ENSURE_TRUE(presShell, true);
|
|
|
|
|
|
|
|
if (mFrameElement &&
|
|
|
|
PresShell::BeforeAfterKeyboardEventEnabled() &&
|
|
|
|
localEvent.message != NS_KEY_PRESS) {
|
|
|
|
presShell->DispatchAfterKeyboardEvent(mFrameElement, localEvent,
|
|
|
|
aEvent.mFlags.mDefaultPrevented);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
bool
|
2013-10-01 11:23:00 +04:00
|
|
|
TabParent::HandleQueryContentEvent(WidgetQueryContentEvent& aEvent)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
2015-06-05 12:28:19 +03:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (NS_WARN_IF(!mContentCache.HandleQueryContentEvent(aEvent, widget)) ||
|
|
|
|
NS_WARN_IF(!aEvent.mSucceeded)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
switch (aEvent.message) {
|
|
|
|
case NS_QUERY_TEXT_RECT:
|
|
|
|
case NS_QUERY_CARET_RECT:
|
|
|
|
case NS_QUERY_EDITOR_RECT:
|
2015-06-05 12:28:19 +03:00
|
|
|
aEvent.mReply.mRect -= GetChildProcessOffset();
|
2015-06-05 12:28:19 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2010-09-24 07:28:15 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:34:26 +04:00
|
|
|
bool
|
2013-10-01 11:23:00 +04:00
|
|
|
TabParent::SendCompositionEvent(WidgetCompositionEvent& event)
|
2010-09-24 07:34:26 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-10-07 14:01:50 +04:00
|
|
|
|
2015-06-05 12:28:19 +03:00
|
|
|
if (!mContentCache.OnCompositionEvent(event)) {
|
2010-09-24 07:34:26 +04:00
|
|
|
return true;
|
2015-02-17 05:30:55 +03:00
|
|
|
}
|
2010-09-24 07:34:26 +04:00
|
|
|
return PBrowserParent::SendCompositionEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-01 11:23:01 +04:00
|
|
|
TabParent::SendSelectionEvent(WidgetSelectionEvent& event)
|
2010-09-24 07:34:26 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-06-05 12:28:20 +03:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
2010-09-24 07:34:26 +04:00
|
|
|
return PBrowserParent::SendSelectionEvent(event);
|
|
|
|
}
|
|
|
|
|
2012-06-23 05:27:30 +04:00
|
|
|
/*static*/ TabParent*
|
|
|
|
TabParent::GetFrom(nsFrameLoader* aFrameLoader)
|
|
|
|
{
|
|
|
|
if (!aFrameLoader) {
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2012-06-23 05:27:30 +04:00
|
|
|
}
|
|
|
|
PBrowserParent* remoteBrowser = aFrameLoader->GetRemoteBrowser();
|
|
|
|
return static_cast<TabParent*>(remoteBrowser);
|
|
|
|
}
|
|
|
|
|
2015-02-06 00:47:32 +03:00
|
|
|
/*static*/ TabParent*
|
|
|
|
TabParent::GetFrom(nsIFrameLoader* aFrameLoader)
|
|
|
|
{
|
|
|
|
if (!aFrameLoader)
|
|
|
|
return nullptr;
|
|
|
|
return GetFrom(static_cast<nsFrameLoader*>(aFrameLoader));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/ TabParent*
|
|
|
|
TabParent::GetFrom(nsITabParent* aTabParent)
|
|
|
|
{
|
|
|
|
return static_cast<TabParent*>(aTabParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/ TabParent*
|
|
|
|
TabParent::GetFrom(PBrowserParent* aTabParent)
|
|
|
|
{
|
|
|
|
return static_cast<TabParent*>(aTabParent);
|
|
|
|
}
|
|
|
|
|
2012-06-23 05:27:30 +04:00
|
|
|
/*static*/ TabParent*
|
|
|
|
TabParent::GetFrom(nsIContent* aContent)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> loaderOwner = do_QueryInterface(aContent);
|
|
|
|
if (!loaderOwner) {
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2012-06-23 05:27:30 +04:00
|
|
|
}
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = loaderOwner->GetFrameLoader();
|
|
|
|
return GetFrom(frameLoader);
|
|
|
|
}
|
|
|
|
|
2014-10-29 21:11:00 +03:00
|
|
|
/*static*/ TabId
|
|
|
|
TabParent::GetTabIdFrom(nsIDocShell *docShell)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsITabChild> tabChild(TabChild::GetFrom(docShell));
|
|
|
|
if (tabChild) {
|
|
|
|
return static_cast<TabChild*>(tabChild.get())->GetTabId();
|
|
|
|
}
|
|
|
|
return TabId(0);
|
|
|
|
}
|
|
|
|
|
2012-07-20 10:48:27 +04:00
|
|
|
RenderFrameParent*
|
|
|
|
TabParent::GetRenderFrame()
|
|
|
|
{
|
|
|
|
if (ManagedPRenderFrameParent().IsEmpty()) {
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2012-07-20 10:48:27 +04:00
|
|
|
}
|
|
|
|
return static_cast<RenderFrameParent*>(ManagedPRenderFrameParent()[0]);
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
bool
|
2011-09-29 10:19:26 +04:00
|
|
|
TabParent::RecvEndIMEComposition(const bool& aCancel,
|
2015-02-17 05:30:55 +03:00
|
|
|
bool* aNoCompositionEvent,
|
2010-09-24 07:28:15 +04:00
|
|
|
nsString* aComposition)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2015-06-05 12:28:19 +03:00
|
|
|
if (!widget) {
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
2015-06-05 12:28:19 +03:00
|
|
|
}
|
|
|
|
*aNoCompositionEvent =
|
|
|
|
!mContentCache.RequestToCommitComposition(widget, aCancel, *aComposition);
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-02-20 19:37:02 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvStartPluginIME(const WidgetKeyboardEvent& aKeyboardEvent,
|
|
|
|
const int32_t& aPanelX, const int32_t& aPanelY,
|
|
|
|
nsString* aCommitted)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
widget->StartPluginIME(aKeyboardEvent,
|
|
|
|
(int32_t&)aPanelX,
|
|
|
|
(int32_t&)aPanelY,
|
|
|
|
*aCommitted);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvSetPluginFocused(const bool& aFocused)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
widget->SetPluginFocused((bool&)aFocused);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
bool
|
2012-08-22 19:56:38 +04:00
|
|
|
TabParent::RecvGetInputContext(int32_t* aIMEEnabled,
|
2012-10-27 03:35:20 +04:00
|
|
|
int32_t* aIMEOpen,
|
2012-10-30 05:58:29 +04:00
|
|
|
intptr_t* aNativeIMEContext)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2011-06-30 01:24:47 +04:00
|
|
|
if (!widget) {
|
2011-11-27 15:51:53 +04:00
|
|
|
*aIMEEnabled = IMEState::DISABLED;
|
|
|
|
*aIMEOpen = IMEState::OPEN_STATE_NOT_SUPPORTED;
|
2012-10-27 03:35:20 +04:00
|
|
|
*aNativeIMEContext = 0;
|
2010-11-23 09:48:45 +03:00
|
|
|
return true;
|
2011-06-30 01:24:47 +04:00
|
|
|
}
|
2010-11-23 09:48:45 +03:00
|
|
|
|
2011-11-27 15:51:52 +04:00
|
|
|
InputContext context = widget->GetInputContext();
|
2012-08-22 19:56:38 +04:00
|
|
|
*aIMEEnabled = static_cast<int32_t>(context.mIMEState.mEnabled);
|
|
|
|
*aIMEOpen = static_cast<int32_t>(context.mIMEState.mOpen);
|
2012-10-30 05:58:29 +04:00
|
|
|
*aNativeIMEContext = reinterpret_cast<intptr_t>(context.mNativeIMEContext);
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-08-22 19:56:38 +04:00
|
|
|
TabParent::RecvSetInputContext(const int32_t& aIMEEnabled,
|
|
|
|
const int32_t& aIMEOpen,
|
2011-11-27 15:51:52 +04:00
|
|
|
const nsString& aType,
|
2012-08-27 06:16:22 +04:00
|
|
|
const nsString& aInputmode,
|
2011-11-27 15:51:52 +04:00
|
|
|
const nsString& aActionHint,
|
2012-08-22 19:56:38 +04:00
|
|
|
const int32_t& aCause,
|
|
|
|
const int32_t& aFocusChange)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
2014-08-28 09:06:41 +04:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget || !AllowContentIME()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
InputContext oldContext = widget->GetInputContext();
|
|
|
|
|
|
|
|
// Ignore if current widget IME setting is not DISABLED and didn't come
|
|
|
|
// from remote content. Chrome content may have taken over.
|
|
|
|
if (oldContext.mIMEState.mEnabled != IMEState::DISABLED &&
|
|
|
|
oldContext.IsOriginMainProcess()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-05-20 22:44:09 +04:00
|
|
|
// mIMETabParent (which is actually static) tracks which if any TabParent has IMEFocus
|
2011-11-27 15:51:53 +04:00
|
|
|
// When the input mode is set to anything but IMEState::DISABLED,
|
|
|
|
// mIMETabParent should be set to this
|
|
|
|
mIMETabParent =
|
2012-08-22 19:56:38 +04:00
|
|
|
aIMEEnabled != static_cast<int32_t>(IMEState::DISABLED) ? this : nullptr;
|
2010-11-23 09:48:03 +03:00
|
|
|
|
2011-11-27 15:51:52 +04:00
|
|
|
InputContext context;
|
2011-11-27 15:51:53 +04:00
|
|
|
context.mIMEState.mEnabled = static_cast<IMEState::Enabled>(aIMEEnabled);
|
|
|
|
context.mIMEState.mOpen = static_cast<IMEState::Open>(aIMEOpen);
|
2010-11-23 09:48:03 +03:00
|
|
|
context.mHTMLInputType.Assign(aType);
|
2012-08-27 06:16:22 +04:00
|
|
|
context.mHTMLInputInputmode.Assign(aInputmode);
|
2011-11-27 15:51:52 +04:00
|
|
|
context.mActionHint.Assign(aActionHint);
|
2014-08-28 09:06:41 +04:00
|
|
|
context.mOrigin = InputContext::ORIGIN_CONTENT;
|
|
|
|
|
2011-11-27 15:51:52 +04:00
|
|
|
InputContextAction action(
|
|
|
|
static_cast<InputContextAction::Cause>(aCause),
|
|
|
|
static_cast<InputContextAction::FocusChange>(aFocusChange));
|
|
|
|
widget->SetInputContext(context, action);
|
2010-11-23 09:48:03 +03:00
|
|
|
|
|
|
|
nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
|
|
|
if (!observerService)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
nsAutoString state;
|
2011-11-27 15:51:53 +04:00
|
|
|
state.AppendInt(aIMEEnabled);
|
2012-07-30 18:20:58 +04:00
|
|
|
observerService->NotifyObservers(nullptr, "ime-enabled-state-changed", state.get());
|
2010-10-18 20:37:00 +04:00
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-05 01:50:42 +04: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 04:24:04 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetDPI(float* aValue)
|
|
|
|
{
|
2013-05-02 03:06:19 +04:00
|
|
|
TryCacheDPIAndScale();
|
2012-05-08 20:20:35 +04:00
|
|
|
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(mDPI > 0,
|
|
|
|
"Must not ask for DPI before OwnerElement is received!");
|
2010-12-09 21:57:05 +03:00
|
|
|
*aValue = mDPI;
|
2010-12-03 04:24:04 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-02 03:06:19 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetDefaultScale(double* aValue)
|
|
|
|
{
|
|
|
|
TryCacheDPIAndScale();
|
|
|
|
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(mDefaultScale.scale > 0,
|
|
|
|
"Must not ask for scale before OwnerElement is received!");
|
2013-09-18 04:45:19 +04:00
|
|
|
*aValue = mDefaultScale.scale;
|
2013-05-02 03:06:19 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-08 04:29:00 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetMaxTouchPoints(uint32_t* aTouchPoints)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
*aTouchPoints = widget->GetMaxTouchPoints();
|
|
|
|
} else {
|
|
|
|
*aTouchPoints = 0;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-07-22 04:49:35 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetWidgetNativeData(WindowsHandle* aValue)
|
|
|
|
{
|
2015-01-30 19:37:03 +03:00
|
|
|
*aValue = 0;
|
2011-07-22 04:49:35 +04:00
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
|
|
|
if (content) {
|
2011-10-18 15:19:44 +04:00
|
|
|
nsIPresShell* shell = content->OwnerDoc()->GetShell();
|
|
|
|
if (shell) {
|
2013-01-05 07:12:24 +04:00
|
|
|
nsViewManager* vm = shell->GetViewManager();
|
2011-10-18 15:19:44 +04:00
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
vm->GetRootWidget(getter_AddRefs(widget));
|
|
|
|
if (widget) {
|
|
|
|
*aValue = reinterpret_cast<WindowsHandle>(
|
|
|
|
widget->GetNativeData(NS_NATIVE_SHAREABLE_WINDOW));
|
2011-07-22 04:49:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-30 19:37:03 +03:00
|
|
|
return true;
|
2011-07-22 04:49:35 +04:00
|
|
|
}
|
|
|
|
|
2010-03-30 00:29:45 +04:00
|
|
|
bool
|
|
|
|
TabParent::ReceiveMessage(const nsString& aMessage,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aSync,
|
2012-08-02 10:02:29 +04:00
|
|
|
const StructuredCloneData* aCloneData,
|
2013-07-11 02:05:39 +04:00
|
|
|
CpowHolder* aCpows,
|
2013-11-06 21:21:15 +04:00
|
|
|
nsIPrincipal* aPrincipal,
|
2015-04-30 06:39:59 +03:00
|
|
|
nsTArray<OwningSerializedStructuredCloneBuffer>* aRetVal)
|
2010-02-20 20:05:20 +03:00
|
|
|
{
|
2015-02-27 08:35:26 +03:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader(true);
|
2010-08-06 02:11:23 +04:00
|
|
|
if (frameLoader && frameLoader->GetFrameMessageManager()) {
|
2011-06-16 22:21:08 +04:00
|
|
|
nsRefPtr<nsFrameMessageManager> manager =
|
|
|
|
frameLoader->GetFrameMessageManager();
|
2010-08-06 02:11:23 +04:00
|
|
|
|
|
|
|
manager->ReceiveMessage(mFrameElement,
|
2015-04-16 18:17:54 +03:00
|
|
|
frameLoader,
|
2010-08-06 02:11:23 +04:00
|
|
|
aMessage,
|
|
|
|
aSync,
|
2012-08-02 10:02:29 +04:00
|
|
|
aCloneData,
|
2013-07-11 02:05:39 +04:00
|
|
|
aCpows,
|
2013-11-06 21:21:15 +04:00
|
|
|
aPrincipal,
|
2015-04-30 06:39:59 +03:00
|
|
|
aRetVal);
|
2010-02-20 20:05:20 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-06-25 02:20:42 +04:00
|
|
|
// nsIAuthPromptProvider
|
|
|
|
|
|
|
|
// This method is largely copied from nsDocShell::GetAuthPrompt
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 19:56:38 +04:00
|
|
|
TabParent::GetAuthPrompt(uint32_t aPromptReason, const nsIID& iid,
|
2010-06-25 02:20:42 +04: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 14:53:36 +04:00
|
|
|
window = do_QueryInterface(frame->OwnerDoc()->GetWindow());
|
2010-06-25 02:20:42 +04:00
|
|
|
|
|
|
|
// Get an auth prompter for our window so that the parenting
|
|
|
|
// of the dialogs works as it should when using tabs.
|
2014-11-04 22:51:06 +03:00
|
|
|
nsCOMPtr<nsISupports> prompt;
|
|
|
|
rv = wwatch->GetPrompt(window, iid, getter_AddRefs(prompt));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsILoginManagerPrompter> prompter = do_QueryInterface(prompt);
|
|
|
|
if (prompter) {
|
|
|
|
nsCOMPtr<nsIDOMElement> browser = do_QueryInterface(mFrameElement);
|
|
|
|
prompter->SetE10sData(browser, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
*aResult = prompt.forget().take();
|
|
|
|
return NS_OK;
|
2010-06-25 02:20:42 +04:00
|
|
|
}
|
|
|
|
|
2014-02-24 00:19:43 +04: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-16 01:10:39 +04:00
|
|
|
PRenderFrameParent*
|
2014-11-16 21:23:22 +03:00
|
|
|
TabParent::AllocPRenderFrameParent()
|
2014-01-16 01:10:39 +04:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(ManagedPRenderFrameParent().IsEmpty());
|
2014-05-08 18:04:00 +04:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
2014-11-16 21:23:22 +03:00
|
|
|
TextureFactoryIdentifier textureFactoryIdentifier;
|
|
|
|
uint64_t layersId = 0;
|
|
|
|
bool success = false;
|
|
|
|
if(frameLoader) {
|
|
|
|
PRenderFrameParent* renderFrame =
|
|
|
|
new RenderFrameParent(frameLoader,
|
|
|
|
&textureFactoryIdentifier,
|
|
|
|
&layersId,
|
|
|
|
&success);
|
|
|
|
MOZ_ASSERT(success);
|
2014-12-19 02:23:39 +03:00
|
|
|
AddTabParentToTable(layersId, this);
|
2014-11-16 21:23:22 +03:00
|
|
|
return renderFrame;
|
|
|
|
} else {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2010-08-21 03:24:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 19:48:39 +04:00
|
|
|
TabParent::DeallocPRenderFrameParent(PRenderFrameParent* aFrame)
|
2010-08-21 03:24:41 +04:00
|
|
|
{
|
|
|
|
delete aFrame;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-16 21:23:22 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetRenderFrameInfo(PRenderFrameParent* aRenderFrame,
|
|
|
|
TextureFactoryIdentifier* aTextureFactoryIdentifier,
|
2015-05-18 08:42:05 +03:00
|
|
|
uint64_t* aLayersId)
|
2014-11-16 21:23:22 +03:00
|
|
|
{
|
|
|
|
RenderFrameParent* renderFrame = static_cast<RenderFrameParent*>(aRenderFrame);
|
|
|
|
renderFrame->GetTextureFactoryIdentifier(aTextureFactoryIdentifier);
|
|
|
|
*aLayersId = renderFrame->GetLayersId();
|
2015-03-11 01:21:02 +03:00
|
|
|
|
|
|
|
if (mNeedLayerTreeReadyNotification) {
|
|
|
|
RequestNotifyLayerTreeReady();
|
|
|
|
mNeedLayerTreeReadyNotification = false;
|
|
|
|
}
|
|
|
|
|
2014-11-16 21:23:22 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2010-10-19 12:21:31 +04:00
|
|
|
TabParent::AllowContentIME()
|
|
|
|
{
|
|
|
|
nsFocusManager* fm = nsFocusManager::GetFocusManager();
|
2011-10-17 18:59:28 +04:00
|
|
|
NS_ENSURE_TRUE(fm, false);
|
2010-10-19 12:21:31 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> focusedContent = fm->GetFocusedContent();
|
|
|
|
if (focusedContent && focusedContent->IsEditable())
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-10-19 12:21:31 +04:00
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2010-10-19 12:21:31 +04:00
|
|
|
}
|
|
|
|
|
2010-08-06 02:11:23 +04:00
|
|
|
already_AddRefed<nsFrameLoader>
|
2015-02-27 08:35:26 +03:00
|
|
|
TabParent::GetFrameLoader(bool aUseCachedFrameLoaderAfterDestroy) const
|
2010-08-06 02:11:23 +04:00
|
|
|
{
|
2015-02-27 08:35:26 +03:00
|
|
|
if (mIsDestroyed && !aUseCachedFrameLoaderAfterDestroy) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mFrameLoader) {
|
|
|
|
nsRefPtr<nsFrameLoader> fl = mFrameLoader;
|
|
|
|
return fl.forget();
|
|
|
|
}
|
2010-08-06 02:11:23 +04:00
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> frameLoaderOwner = do_QueryInterface(mFrameElement);
|
2012-07-30 18:20:58 +04:00
|
|
|
return frameLoaderOwner ? frameLoaderOwner->GetFrameLoader() : nullptr;
|
2010-08-06 02:11:23 +04:00
|
|
|
}
|
|
|
|
|
2012-04-25 20:35:58 +04:00
|
|
|
void
|
2013-05-02 03:06:19 +04:00
|
|
|
TabParent::TryCacheDPIAndScale()
|
2012-04-25 20:35:58 +04:00
|
|
|
{
|
|
|
|
if (mDPI > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2012-05-08 20:20:35 +04: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-24 03:39:17 +04:00
|
|
|
widget = nsContentUtils::WidgetForDocument(mFrameElement->OwnerDoc());
|
2012-05-08 20:20:35 +04:00
|
|
|
}
|
|
|
|
|
2012-04-25 20:35:58 +04:00
|
|
|
if (widget) {
|
|
|
|
mDPI = widget->GetDPI();
|
2013-05-02 03:06:19 +04:00
|
|
|
mDefaultScale = widget->GetDefaultScale();
|
2012-04-25 20:35:58 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
already_AddRefed<nsIWidget>
|
|
|
|
TabParent::GetWidget() const
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
|
|
|
if (!content)
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-09-24 07:28:15 +04:00
|
|
|
|
|
|
|
nsIFrame *frame = content->GetPrimaryFrame();
|
|
|
|
if (!frame)
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-09-24 07:28:15 +04:00
|
|
|
|
2012-04-25 20:35:58 +04:00
|
|
|
nsCOMPtr<nsIWidget> widget = frame->GetNearestWidget();
|
|
|
|
return widget.forget();
|
2010-09-24 07:28:15 +04:00
|
|
|
}
|
|
|
|
|
2015-02-07 00:46:46 +03:00
|
|
|
void
|
|
|
|
TabParent::ApzAwareEventRoutingToChild(ScrollableLayerGuid* aOutTargetGuid,
|
2015-05-14 15:16:00 +03:00
|
|
|
uint64_t* aOutInputBlockId,
|
|
|
|
nsEventStatus* aOutApzResponse)
|
2012-07-20 10:48:27 +04:00
|
|
|
{
|
2015-06-04 23:51:10 +03:00
|
|
|
if (AsyncPanZoomEnabled()) {
|
2014-12-16 10:31:12 +03:00
|
|
|
if (aOutTargetGuid) {
|
|
|
|
*aOutTargetGuid = InputAPZContext::GetTargetLayerGuid();
|
2015-02-06 17:26:44 +03:00
|
|
|
|
|
|
|
// There may be cases where the APZ hit-testing code came to a different
|
|
|
|
// conclusion than the main-thread hit-testing code as to where the event
|
|
|
|
// is destined. In such cases the layersId of the APZ result may not match
|
|
|
|
// the layersId of this renderframe. In such cases the main-thread hit-
|
|
|
|
// testing code "wins" so we need to update the guid to reflect this.
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
|
|
|
if (aOutTargetGuid->mLayersId != rfp->GetLayersId()) {
|
|
|
|
*aOutTargetGuid = ScrollableLayerGuid(rfp->GetLayersId(), 0, FrameMetrics::NULL_SCROLL_ID);
|
|
|
|
}
|
|
|
|
}
|
2014-12-16 10:31:12 +03:00
|
|
|
}
|
|
|
|
if (aOutInputBlockId) {
|
|
|
|
*aOutInputBlockId = InputAPZContext::GetInputBlockId();
|
|
|
|
}
|
2015-05-14 15:16:00 +03:00
|
|
|
if (aOutApzResponse) {
|
|
|
|
*aOutApzResponse = InputAPZContext::GetApzResponse();
|
|
|
|
}
|
2014-12-19 02:25:03 +03:00
|
|
|
|
|
|
|
// Let the widget know that the event will be sent to the child process,
|
|
|
|
// which will (hopefully) send a confirmation notice back to APZ.
|
|
|
|
InputAPZContext::SetRoutedToChildProcess();
|
2012-07-20 10:48:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-13 02:01:25 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvBrowserFrameOpenWindow(PBrowserParent* aOpener,
|
|
|
|
const nsString& aURL,
|
|
|
|
const nsString& aName,
|
|
|
|
const nsString& aFeatures,
|
|
|
|
bool* aOutWindowOpened)
|
|
|
|
{
|
2013-09-10 08:18:46 +04:00
|
|
|
BrowserElementParent::OpenWindowResult opened =
|
2015-02-06 00:47:32 +03:00
|
|
|
BrowserElementParent::OpenWindowOOP(TabParent::GetFrom(aOpener),
|
2012-06-13 02:01:25 +04:00
|
|
|
this, aURL, aName, aFeatures);
|
2015-03-30 17:00:42 +03:00
|
|
|
*aOutWindowOpened = (opened == BrowserElementParent::OPEN_WINDOW_ADDED);
|
2012-06-13 02:01:25 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-09 08:39:02 +04:00
|
|
|
bool
|
2013-11-13 22:20:30 +04:00
|
|
|
TabParent::RecvZoomToRect(const uint32_t& aPresShellId,
|
|
|
|
const ViewID& aViewId,
|
|
|
|
const CSSRect& aRect)
|
2012-08-09 08:39:02 +04:00
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
2013-11-13 22:20:30 +04:00
|
|
|
rfp->ZoomToRect(aPresShellId, aViewId, aRect);
|
2012-08-09 08:39:02 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-29 06:18:18 +04:00
|
|
|
bool
|
2013-11-14 21:35:41 +04:00
|
|
|
TabParent::RecvUpdateZoomConstraints(const uint32_t& aPresShellId,
|
|
|
|
const ViewID& aViewId,
|
2013-11-09 04:07:00 +04:00
|
|
|
const bool& aIsRoot,
|
2014-01-06 22:26:44 +04:00
|
|
|
const ZoomConstraints& aConstraints)
|
2012-09-29 06:18:18 +04:00
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
2014-01-06 22:26:44 +04:00
|
|
|
rfp->UpdateZoomConstraints(aPresShellId, aViewId, aIsRoot, aConstraints);
|
2012-09-29 06:18:18 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:37:06 +04:00
|
|
|
bool
|
2014-12-09 13:35:12 +03:00
|
|
|
TabParent::RecvContentReceivedInputBlock(const ScrollableLayerGuid& aGuid,
|
|
|
|
const uint64_t& aInputBlockId,
|
|
|
|
const bool& aPreventDefault)
|
2012-08-22 08:37:06 +04:00
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
2014-12-09 13:35:12 +03:00
|
|
|
rfp->ContentReceivedInputBlock(aGuid, aInputBlockId, aPreventDefault);
|
2012-08-22 08:37:06 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-22 05:36:25 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetTargetAPZC(const uint64_t& aInputBlockId,
|
2015-01-16 22:58:52 +03:00
|
|
|
nsTArray<ScrollableLayerGuid>&& aTargets)
|
2014-11-22 05:36:25 +03:00
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
|
|
|
rfp->SetTargetAPZC(aInputBlockId, aTargets);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-19 13:33:33 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetAllowedTouchBehavior(const uint64_t& aInputBlockId,
|
|
|
|
nsTArray<TouchBehaviorFlags>&& aFlags)
|
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
|
|
|
rfp->SetAllowedTouchBehavior(aInputBlockId, aFlags);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-11 05:10:57 +04: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 21:00:54 +04:00
|
|
|
mChromeFlags & nsIWebBrowserChrome::CHROME_REMOTE_WINDOW,
|
2014-01-11 05:10:57 +04:00
|
|
|
IsBrowserElement());
|
|
|
|
mLoadContext = loadContext;
|
|
|
|
}
|
|
|
|
return loadContext.forget();
|
|
|
|
}
|
|
|
|
|
2014-01-24 13:02:23 +04: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 09:28:53 +04:00
|
|
|
nsContentUtils::GetEventIdAndAtom(aType, eTouchEventClass, &msg);
|
2014-01-24 13:02:23 +04: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 15:42:44 +04:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
WidgetTouchEvent event(true, msg, widget);
|
2014-01-24 13:02:23 +04:00
|
|
|
event.modifiers = aModifiers;
|
|
|
|
event.time = PR_IntervalNow();
|
|
|
|
|
2014-06-02 13:34:53 +04: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 13:02:23 +04:00
|
|
|
event.touches.SetCapacity(aCount);
|
|
|
|
for (uint32_t i = 0; i < aCount; ++i) {
|
2014-06-02 13:34:53 +04:00
|
|
|
LayoutDeviceIntPoint pt =
|
|
|
|
LayoutDeviceIntPoint::FromAppUnitsRounded(
|
|
|
|
CSSPoint::ToAppUnits(CSSPoint(aXs[i], aYs[i])),
|
|
|
|
presContext->AppUnitsPerDevPixel());
|
|
|
|
|
2014-01-24 13:02:23 +04:00
|
|
|
nsRefPtr<Touch> t = new Touch(aIdentifiers[i],
|
2015-02-02 01:27:31 +03:00
|
|
|
pt,
|
2014-01-24 13:02:23 +04:00
|
|
|
nsIntPoint(aRxs[i], aRys[i]),
|
|
|
|
aRotationAngles[i],
|
|
|
|
aForces[i]);
|
2014-01-28 15:42:44 +04: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 13:02:23 +04:00
|
|
|
event.touches.AppendElement(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
SendRealTouchEvent(event);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::GetUseAsyncPanZoom(bool* useAsyncPanZoom)
|
|
|
|
{
|
2015-06-04 23:51:10 +03:00
|
|
|
*useAsyncPanZoom = AsyncPanZoomEnabled();
|
2014-01-24 13:02:23 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-02-20 15:26:13 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::SetIsDocShellActive(bool isActive)
|
|
|
|
{
|
2014-03-03 13:05:13 +04:00
|
|
|
unused << SendSetIsDocShellActive(isActive);
|
2014-02-20 15:26:13 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-01-22 12:40:17 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::GetTabId(uint64_t* aId)
|
|
|
|
{
|
|
|
|
*aId = GetTabId();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-05-13 23:44:39 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::GetHasContentOpener(bool* aResult)
|
|
|
|
{
|
|
|
|
*aResult = mHasContentOpener;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::SetHasContentOpener(bool aHasContentOpener)
|
|
|
|
{
|
|
|
|
mHasContentOpener = aHasContentOpener;
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class LayerTreeUpdateRunnable final
|
2015-02-27 08:30:44 +03:00
|
|
|
: public nsRunnable
|
|
|
|
{
|
|
|
|
uint64_t mLayersId;
|
|
|
|
bool mActive;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit LayerTreeUpdateRunnable(uint64_t aLayersId, bool aActive)
|
|
|
|
: mLayersId(aLayersId), mActive(aActive) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
NS_IMETHOD Run() {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
TabParent* tabParent = TabParent::GetTabParentFromLayersId(mLayersId);
|
|
|
|
if (tabParent) {
|
|
|
|
tabParent->LayerTreeUpdate(mActive);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// This observer runs on the compositor thread, so we dispatch a runnable to the
|
|
|
|
// main thread to actually dispatch the event.
|
|
|
|
class LayerTreeUpdateObserver : public CompositorUpdateObserver
|
|
|
|
{
|
|
|
|
virtual void ObserveUpdate(uint64_t aLayersId, bool aActive) {
|
|
|
|
nsRefPtr<LayerTreeUpdateRunnable> runnable = new LayerTreeUpdateRunnable(aLayersId, aActive);
|
|
|
|
NS_DispatchToMainThread(runnable);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RequestNotifyLayerTreeReady()
|
|
|
|
{
|
|
|
|
RenderFrameParent* frame = GetRenderFrame();
|
|
|
|
if (!frame) {
|
2015-03-11 01:21:02 +03:00
|
|
|
mNeedLayerTreeReadyNotification = true;
|
|
|
|
} else {
|
|
|
|
CompositorParent::RequestNotifyLayerTreeReady(frame->GetLayersId(),
|
|
|
|
new LayerTreeUpdateObserver());
|
2015-02-27 08:30:44 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RequestNotifyLayerTreeCleared()
|
|
|
|
{
|
|
|
|
RenderFrameParent* frame = GetRenderFrame();
|
|
|
|
if (!frame) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CompositorParent::RequestNotifyLayerTreeCleared(frame->GetLayersId(),
|
|
|
|
new LayerTreeUpdateObserver());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::LayerTreeUpdate(bool aActive)
|
|
|
|
{
|
|
|
|
nsCOMPtr<mozilla::dom::EventTarget> target = do_QueryInterface(mFrameElement);
|
|
|
|
if (!target) {
|
|
|
|
NS_WARNING("Could not locate target for layer tree message.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEvent> event;
|
|
|
|
NS_NewDOMEvent(getter_AddRefs(event), mFrameElement, nullptr, nullptr);
|
|
|
|
if (aActive) {
|
|
|
|
event->InitEvent(NS_LITERAL_STRING("MozLayerTreeReady"), true, false);
|
|
|
|
} else {
|
|
|
|
event->InitEvent(NS_LITERAL_STRING("MozLayerTreeCleared"), true, false);
|
|
|
|
}
|
|
|
|
event->SetTrusted(true);
|
|
|
|
event->GetInternalNSEvent()->mFlags.mOnlyChromeDispatch = true;
|
|
|
|
bool dummy;
|
|
|
|
mFrameElement->DispatchEvent(event, &dummy);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-14 03:06:03 +03:00
|
|
|
void
|
|
|
|
TabParent::SwapLayerTreeObservers(TabParent* aOther)
|
|
|
|
{
|
|
|
|
if (IsDestroyed() || aOther->IsDestroyed()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
RenderFrameParent* rfp = GetRenderFrame();
|
|
|
|
RenderFrameParent* otherRfp = aOther->GetRenderFrame();
|
|
|
|
if(!rfp || !otherRfp) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CompositorParent::SwapLayerTreeObservers(rfp->GetLayersId(),
|
|
|
|
otherRfp->GetLayersId());
|
|
|
|
}
|
|
|
|
|
2014-05-23 22:19:00 +04: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-11-12 23:59:19 +03:00
|
|
|
mozilla::plugins::PPluginWidgetParent*
|
|
|
|
TabParent::AllocPPluginWidgetParent()
|
|
|
|
{
|
|
|
|
return new mozilla::plugins::PluginWidgetParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPPluginWidgetParent(mozilla::plugins::PPluginWidgetParent* aActor)
|
|
|
|
{
|
|
|
|
delete aActor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-31 23:39:02 +03:00
|
|
|
nsresult
|
|
|
|
TabParent::HandleEvent(nsIDOMEvent* aEvent)
|
|
|
|
{
|
|
|
|
nsAutoString eventType;
|
|
|
|
aEvent->GetType(eventType);
|
|
|
|
|
|
|
|
if (eventType.EqualsLiteral("MozUpdateWindowPos") && !mIsDestroyed) {
|
|
|
|
// This event is sent when the widget moved. Therefore we only update
|
|
|
|
// the position.
|
2015-04-21 17:33:56 +03:00
|
|
|
return UpdatePosition();
|
2015-03-31 23:39:02 +03:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class FakeChannel final : public nsIChannel,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsIAuthPromptCallback,
|
|
|
|
public nsIInterfaceRequestor,
|
|
|
|
public nsILoadContext
|
2014-06-11 09:44:36 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
FakeChannel(const nsCString& aUri, uint64_t aCallbackId, Element* aElement)
|
|
|
|
: mCallbackId(aCallbackId)
|
|
|
|
, mElement(aElement)
|
|
|
|
{
|
|
|
|
NS_NewURI(getter_AddRefs(mUri), aUri);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2015-03-21 19:28:04 +03:00
|
|
|
#define NO_IMPL override { return NS_ERROR_NOT_IMPLEMENTED; }
|
2014-06-11 09:44:36 +04:00
|
|
|
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
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetURI(nsIURI** aUri) override
|
2014-06-11 09:44:36 +04:00
|
|
|
{
|
2015-04-19 20:22:35 +03:00
|
|
|
nsCOMPtr<nsIURI> copy = mUri;
|
|
|
|
copy.forget(aUri);
|
2014-06-11 09:44:36 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
NS_IMETHOD GetOwner(nsISupports**) NO_IMPL
|
|
|
|
NS_IMETHOD SetOwner(nsISupports*) NO_IMPL
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetLoadInfo(nsILoadInfo** aLoadInfo) override
|
2014-07-10 10:56:36 +04:00
|
|
|
{
|
2015-04-19 20:22:35 +03:00
|
|
|
nsCOMPtr<nsILoadInfo> copy = mLoadInfo;
|
|
|
|
copy.forget(aLoadInfo);
|
2014-07-10 10:56:36 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD SetLoadInfo(nsILoadInfo* aLoadInfo) override
|
2014-07-10 10:56:36 +04:00
|
|
|
{
|
|
|
|
mLoadInfo = aLoadInfo;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetNotificationCallbacks(nsIInterfaceRequestor** aRequestor) override
|
2014-06-11 09:44:36 +04:00
|
|
|
{
|
|
|
|
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
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD OnAuthAvailable(nsISupports *aContext, nsIAuthInformation *aAuthInfo) override;
|
|
|
|
NS_IMETHOD OnAuthCancelled(nsISupports *aContext, bool userCancel) override;
|
|
|
|
NS_IMETHOD GetInterface(const nsIID & uuid, void **result) override
|
2014-06-11 09:44:36 +04:00
|
|
|
{
|
|
|
|
return QueryInterface(uuid, result);
|
|
|
|
}
|
|
|
|
NS_IMETHOD GetAssociatedWindow(nsIDOMWindow**) NO_IMPL
|
|
|
|
NS_IMETHOD GetTopWindow(nsIDOMWindow**) NO_IMPL
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetTopFrameElement(nsIDOMElement** aElement) override
|
2014-06-11 09:44:36 +04:00
|
|
|
{
|
|
|
|
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 23:56:07 +04:00
|
|
|
~FakeChannel() {}
|
|
|
|
|
2014-06-11 09:44:36 +04:00
|
|
|
nsCOMPtr<nsIURI> mUri;
|
|
|
|
uint64_t mCallbackId;
|
|
|
|
nsCOMPtr<Element> mElement;
|
2014-07-10 10:56:36 +04:00
|
|
|
nsCOMPtr<nsILoadInfo> mLoadInfo;
|
2014-06-11 09:44:36 +04: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;
|
|
|
|
}
|
|
|
|
|
2015-04-08 21:48:11 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvInvokeDragSession(nsTArray<IPCDataTransfer>&& aTransfers,
|
|
|
|
const uint32_t& aAction,
|
|
|
|
const nsCString& aVisualDnDData,
|
|
|
|
const uint32_t& aWidth, const uint32_t& aHeight,
|
|
|
|
const uint32_t& aStride, const uint8_t& aFormat,
|
|
|
|
const int32_t& aDragAreaX, const int32_t& aDragAreaY)
|
|
|
|
{
|
|
|
|
mInitialDataTransferItems.Clear();
|
|
|
|
nsPresContext* pc = mFrameElement->OwnerDoc()->GetShell()->GetPresContext();
|
|
|
|
EventStateManager* esm = pc->EventStateManager();
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < aTransfers.Length(); ++i) {
|
|
|
|
auto& items = aTransfers[i].items();
|
|
|
|
nsTArray<DataTransferItem>* itemArray = mInitialDataTransferItems.AppendElement();
|
|
|
|
for (uint32_t j = 0; j < items.Length(); ++j) {
|
|
|
|
const IPCDataTransferItem& item = items[j];
|
|
|
|
DataTransferItem* localItem = itemArray->AppendElement();
|
|
|
|
localItem->mFlavor = item.flavor();
|
|
|
|
if (item.data().type() == IPCDataTransferData::TnsString) {
|
|
|
|
localItem->mType = DataTransferItem::DataType::eString;
|
|
|
|
localItem->mStringData = item.data().get_nsString();
|
2015-04-16 22:38:12 +03:00
|
|
|
} else if (item.data().type() == IPCDataTransferData::TPBlobChild) {
|
2015-04-08 21:48:11 +03:00
|
|
|
localItem->mType = DataTransferItem::DataType::eBlob;
|
|
|
|
BlobParent* blobParent =
|
|
|
|
static_cast<BlobParent*>(item.data().get_PBlobParent());
|
|
|
|
if (blobParent) {
|
|
|
|
localItem->mBlobData = blobParent->GetBlobImpl();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Manager()->IsContentParent()) {
|
|
|
|
nsCOMPtr<nsIDragService> dragService =
|
|
|
|
do_GetService("@mozilla.org/widget/dragservice;1");
|
|
|
|
if (dragService) {
|
|
|
|
dragService->MaybeAddChildProcess(Manager()->AsContentParent());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-14 13:50:59 +03:00
|
|
|
if (aVisualDnDData.IsEmpty() ||
|
|
|
|
(aVisualDnDData.Length() < aHeight * aStride)) {
|
2015-04-08 21:48:11 +03:00
|
|
|
mDnDVisualization = nullptr;
|
|
|
|
} else {
|
|
|
|
mDnDVisualization =
|
|
|
|
new mozilla::gfx::SourceSurfaceRawData();
|
|
|
|
mozilla::gfx::SourceSurfaceRawData* raw =
|
|
|
|
static_cast<mozilla::gfx::SourceSurfaceRawData*>(mDnDVisualization.get());
|
|
|
|
raw->InitWrappingData(
|
|
|
|
reinterpret_cast<uint8_t*>(const_cast<nsCString&>(aVisualDnDData).BeginWriting()),
|
|
|
|
mozilla::gfx::IntSize(aWidth, aHeight), aStride,
|
|
|
|
static_cast<mozilla::gfx::SurfaceFormat>(aFormat), false);
|
|
|
|
raw->GuaranteePersistance();
|
|
|
|
}
|
|
|
|
mDragAreaX = aDragAreaX;
|
|
|
|
mDragAreaY = aDragAreaY;
|
|
|
|
|
|
|
|
esm->BeginTrackingRemoteDragGesture(mFrameElement);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::AddInitialDnDDataTo(DataTransfer* aDataTransfer)
|
|
|
|
{
|
|
|
|
for (uint32_t i = 0; i < mInitialDataTransferItems.Length(); ++i) {
|
|
|
|
nsTArray<DataTransferItem>& itemArray = mInitialDataTransferItems[i];
|
|
|
|
for (uint32_t j = 0; j < itemArray.Length(); ++j) {
|
|
|
|
DataTransferItem& item = itemArray[j];
|
|
|
|
nsCOMPtr<nsIWritableVariant> variant =
|
|
|
|
do_CreateInstance(NS_VARIANT_CONTRACTID);
|
|
|
|
if (!variant) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Special case kFilePromiseMime so that we get the right
|
|
|
|
// nsIFlavorDataProvider for it.
|
|
|
|
if (item.mFlavor.EqualsLiteral(kFilePromiseMime)) {
|
|
|
|
nsRefPtr<nsISupports> flavorDataProvider =
|
|
|
|
new nsContentAreaDragDropDataProvider();
|
|
|
|
variant->SetAsISupports(flavorDataProvider);
|
|
|
|
} else if (item.mType == DataTransferItem::DataType::eString) {
|
|
|
|
variant->SetAsAString(item.mStringData);
|
|
|
|
} else if (item.mType == DataTransferItem::DataType::eBlob) {
|
|
|
|
variant->SetAsISupports(item.mBlobData);
|
|
|
|
}
|
|
|
|
// Using system principal here, since once the data is on parent process
|
|
|
|
// side, it can be handled as being from browser chrome or OS.
|
|
|
|
aDataTransfer->SetDataWithPrincipal(NS_ConvertUTF8toUTF16(item.mFlavor),
|
|
|
|
variant, i,
|
|
|
|
nsContentUtils::GetSystemPrincipal());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mInitialDataTransferItems.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::TakeDragVisualization(RefPtr<mozilla::gfx::SourceSurface>& aSurface,
|
|
|
|
int32_t& aDragAreaX, int32_t& aDragAreaY)
|
|
|
|
{
|
|
|
|
aSurface = mDnDVisualization.forget();
|
|
|
|
aDragAreaX = mDragAreaX;
|
|
|
|
aDragAreaY = mDragAreaY;
|
|
|
|
}
|
|
|
|
|
2015-06-04 23:51:10 +03:00
|
|
|
bool
|
|
|
|
TabParent::AsyncPanZoomEnabled() const
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
return widget && widget->AsyncPanZoomEnabled();
|
|
|
|
}
|
|
|
|
|
2014-06-11 09:44:36 +04:00
|
|
|
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-07-01 00:39:22 +04:00
|
|
|
} // namespace tabs
|
|
|
|
} // namespace mozilla
|