2010-03-26 21:39:39 +03:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8; -*- */
|
2010-06-25 02:20:42 +04:00
|
|
|
/* vim: set sw=2 ts=8 et 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"
|
|
|
|
|
|
|
|
#include "Blob.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "IDBFactory.h"
|
|
|
|
#include "IndexedDBParent.h"
|
2012-08-09 06:58:06 +04:00
|
|
|
#include "mozIApplication.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "mozilla/BrowserElementParent.h"
|
|
|
|
#include "mozilla/docshell/OfflineCacheUpdateParent.h"
|
2010-08-21 03:24:41 +04:00
|
|
|
#include "mozilla/dom/ContentParent.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"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "mozilla/layers/CompositorParent.h"
|
2010-08-21 03:24:41 +04:00
|
|
|
#include "mozilla/layout/RenderFrameParent.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
#include "mozilla/unused.h"
|
2009-11-05 21:14:22 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsContentPermissionHelper.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsDebug.h"
|
2009-11-17 17:22:23 +03:00
|
|
|
#include "nsEventDispatcher.h"
|
2012-09-12 00:05:52 +04:00
|
|
|
#include "nsEventStateManager.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsFocusManager.h"
|
2010-01-01 04:35:55 +03:00
|
|
|
#include "nsFrameLoader.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIContent.h"
|
2013-03-28 09:12:03 +04:00
|
|
|
#include "nsIDocShell.h"
|
2012-08-09 06:58:06 +04:00
|
|
|
#include "nsIDOMApplicationRegistry.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDOMEvent.h"
|
2011-10-15 11:34:31 +04:00
|
|
|
#include "nsIDOMHTMLFrameElement.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIDOMWindow.h"
|
2010-05-17 15:25:22 +04:00
|
|
|
#include "nsIDialogCreator.h"
|
2010-06-25 02:20:42 +04:00
|
|
|
#include "nsIPromptFactory.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsIMozBrowserFrame.h"
|
2012-08-09 06:58:06 +04:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
2013-01-05 07:12:24 +04:00
|
|
|
#include "nsViewManager.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsIWindowWatcher.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
2012-04-25 20:35:58 +04:00
|
|
|
#include "nsPrintfCString.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "nsSerializationHelper.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2013-02-16 02:27:21 +04:00
|
|
|
#include "private/pprio.h"
|
2012-08-02 10:02:29 +04:00
|
|
|
#include "StructuredCloneUtils.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include "TabChild.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;
|
2012-06-01 21:21:12 +04:00
|
|
|
using namespace mozilla::dom::indexedDB;
|
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);
|
|
|
|
MOZ_ASSERT(mFD);
|
|
|
|
|
|
|
|
nsRefPtr<TabParent> tabParent;
|
|
|
|
mTabParent.swap(tabParent);
|
|
|
|
|
|
|
|
FileDescriptor::PlatformHandleType handle =
|
|
|
|
FileDescriptor::PlatformHandleType(PR_FileDesc2NativeHandle(mFD));
|
|
|
|
|
|
|
|
mozilla::unused << tabParent->SendCacheFileDescriptor(mPath, handle);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEventTarget> eventTarget;
|
|
|
|
mEventTarget.swap(eventTarget);
|
|
|
|
|
|
|
|
if (NS_FAILED(eventTarget->Dispatch(this, NS_DISPATCH_NORMAL))) {
|
|
|
|
NS_WARNING("Failed to dispatch to stream transport service!");
|
|
|
|
|
|
|
|
// It's probably safer to take the main thread IO hit here rather
|
|
|
|
// than leak a file descriptor.
|
|
|
|
CloseFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpenFile()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(!mFD);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
nsresult rv = NS_NewLocalFile(mPath, false, getter_AddRefs(file));
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
PRFileDesc* fd;
|
|
|
|
rv = file->OpenNSPRFileDesc(PR_RDONLY, 0, &fd);
|
|
|
|
NS_ENSURE_SUCCESS_VOID(rv);
|
|
|
|
|
|
|
|
mFD = fd;
|
|
|
|
|
|
|
|
if (NS_FAILED(NS_DispatchToMainThread(this, NS_DISPATCH_NORMAL))) {
|
|
|
|
NS_WARNING("Failed to dispatch to main thread!");
|
|
|
|
|
|
|
|
CloseFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CloseFile()
|
|
|
|
{
|
|
|
|
// It's possible for this to happen on the main thread if the dispatch
|
|
|
|
// to the stream service fails after we've already opened the file so
|
|
|
|
// we can't assert the thread we're running on.
|
|
|
|
|
|
|
|
MOZ_ASSERT(mFD);
|
|
|
|
|
|
|
|
PR_Close(mFD);
|
|
|
|
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-09-12 00:05:52 +04:00
|
|
|
TabParent* sEventCapturer;
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
TabParent *TabParent::mIMETabParent = nullptr;
|
2010-09-24 07:28:15 +04:00
|
|
|
|
2010-11-21 22:21:56 +03:00
|
|
|
NS_IMPL_ISUPPORTS3(TabParent, nsITabParent, nsIAuthPromptProvider, nsISecureBrowserUI)
|
2010-03-26 21:39:39 +03:00
|
|
|
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 22:32:37 +04:00
|
|
|
TabParent::TabParent(const TabContext& aContext)
|
|
|
|
: TabContext(aContext)
|
|
|
|
, mFrameElement(NULL)
|
2012-06-01 18:35:16 +04:00
|
|
|
, mIMESelectionAnchor(0)
|
|
|
|
, mIMESelectionFocus(0)
|
|
|
|
, mIMEComposing(false)
|
2011-10-17 18:59:28 +04:00
|
|
|
, mIMECompositionEnding(false)
|
2012-06-01 18:35:16 +04:00
|
|
|
, mIMECompositionStart(0)
|
2011-01-12 00:34:31 +03:00
|
|
|
, mIMESeqno(0)
|
2012-09-12 00:05:52 +04:00
|
|
|
, mEventCaptureDepth(0)
|
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)
|
2012-04-25 20:35:58 +04:00
|
|
|
, mShown(false)
|
2013-01-29 11:49:38 +04:00
|
|
|
, mUpdatedDimensions(false)
|
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)
|
2009-07-01 00:39:22 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TabParent::~TabParent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-12-09 21:57:05 +03:00
|
|
|
void
|
|
|
|
TabParent::SetOwnerElement(nsIDOMElement* aElement)
|
|
|
|
{
|
|
|
|
mFrameElement = aElement;
|
2012-04-25 20:35:58 +04:00
|
|
|
TryCacheDPI();
|
2010-12-09 21:57:05 +03:00
|
|
|
}
|
|
|
|
|
2011-01-06 07:54:47 +03:00
|
|
|
void
|
|
|
|
TabParent::Destroy()
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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-10-05 23:09:33 +04:00
|
|
|
const InfallibleTArray<PIndexedDBParent*>& idbParents =
|
|
|
|
ManagedPIndexedDBParent();
|
|
|
|
for (uint32_t i = 0; i < idbParents.Length(); ++i) {
|
|
|
|
static_cast<IndexedDBParent*>(idbParents[i])->Disconnect();
|
|
|
|
}
|
|
|
|
|
2012-07-20 10:48:27 +04:00
|
|
|
if (RenderFrameParent* frame = GetRenderFrame()) {
|
|
|
|
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
|
|
|
|
|
|
|
ContentParent* cp = static_cast<ContentParent*>(Manager());
|
|
|
|
cp->NotifyTabDestroying(this);
|
|
|
|
mMarkedDestroying = true;
|
2011-01-06 07:54:47 +03:00
|
|
|
}
|
|
|
|
|
2012-07-17 22:27:27 +04:00
|
|
|
bool
|
|
|
|
TabParent::Recv__delete__()
|
|
|
|
{
|
|
|
|
ContentParent* cp = static_cast<ContentParent*>(Manager());
|
2013-01-10 17:22:14 +04:00
|
|
|
cp->NotifyTabDestroyed(this, mMarkedDestroying);
|
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 (sEventCapturer == this) {
|
|
|
|
sEventCapturer = nullptr;
|
|
|
|
}
|
|
|
|
if (mIMETabParent == this) {
|
2012-07-30 18:20:58 +04:00
|
|
|
mIMETabParent = nullptr;
|
2012-09-12 00:05:52 +04:00
|
|
|
}
|
2010-08-06 02:11:23 +04:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (frameLoader) {
|
2012-09-28 09:43:24 +04:00
|
|
|
ReceiveMessage(CHILD_PROCESS_SHUTDOWN_MESSAGE, false, nullptr, nullptr);
|
2010-08-06 02:11:23 +04:00
|
|
|
frameLoader->DestroyChild();
|
2012-08-02 18:26:57 +04:00
|
|
|
|
|
|
|
if (why == AbnormalShutdown) {
|
|
|
|
nsCOMPtr<nsIObserverService> os = services::GetObserverService();
|
|
|
|
if (os) {
|
|
|
|
os->NotifyObservers(NS_ISUPPORTS_CAST(nsIFrameLoader*, frameLoader),
|
|
|
|
"oop-frameloader-crashed", 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);
|
2012-07-30 18:20:58 +04:00
|
|
|
fm->MoveFocus(nullptr, mFrameElement, 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;
|
|
|
|
}
|
|
|
|
|
2010-01-01 04:35:55 +03:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::AnswerCreateWindow(PBrowserParent** retval)
|
2010-01-01 04:35:55 +03:00
|
|
|
{
|
|
|
|
if (!mBrowserDOMWindow) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-28 21:22:59 +04:00
|
|
|
// Only non-app, non-browser processes may call CreateWindow.
|
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
|
|
|
if (IsBrowserOrApp()) {
|
2012-08-28 21:22:59 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-01-01 04:35:55 +03:00
|
|
|
// Get a new rendering area from the browserDOMWin. We don't want
|
|
|
|
// to be starting any loads here, so get it with a null URI.
|
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> frameLoaderOwner;
|
2012-07-30 18:20:58 +04:00
|
|
|
mBrowserDOMWindow->OpenURIInFrame(nullptr, nullptr,
|
2010-01-01 04:35:55 +03:00
|
|
|
nsIBrowserDOMWindow::OPEN_NEWTAB,
|
|
|
|
nsIBrowserDOMWindow::OPEN_NEW,
|
|
|
|
getter_AddRefs(frameLoaderOwner));
|
|
|
|
if (!frameLoaderOwner) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = frameLoaderOwner->GetFrameLoader();
|
|
|
|
if (!frameLoader) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
*retval = frameLoader->GetRemoteBrowser();
|
2010-01-01 04:35:55 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
2013-02-16 02:27:21 +04:00
|
|
|
if (!mShown) {
|
|
|
|
NS_WARNING(nsPrintfCString("TabParent::LoadURL(%s) called before "
|
|
|
|
"Show(). Ignoring LoadURL.\n",
|
|
|
|
spec.get()).get());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
unused << SendLoadURL(spec);
|
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
|
2010-08-21 03:24:40 +04:00
|
|
|
TabParent::Show(const nsIntSize& size)
|
2009-07-01 00:39:22 +04:00
|
|
|
{
|
2010-08-21 03:24:40 +04:00
|
|
|
// sigh
|
2012-04-25 20:35:58 +04:00
|
|
|
mShown = true;
|
2012-09-29 06:16:36 +04:00
|
|
|
mDimensions = size;
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendShow(size);
|
|
|
|
}
|
2010-08-21 03:24:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-07-16 01:46:56 +04:00
|
|
|
TabParent::UpdateDimensions(const nsRect& rect, const nsIntSize& 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();
|
2012-11-22 06:40:57 +04:00
|
|
|
|
2013-01-29 11:49:38 +04:00
|
|
|
if (!mUpdatedDimensions || mOrientation != orientation ||
|
|
|
|
mDimensions != size || !mRect.IsEqualEdges(rect)) {
|
|
|
|
mUpdatedDimensions = true;
|
|
|
|
mRect = rect;
|
|
|
|
mDimensions = size;
|
|
|
|
mOrientation = orientation;
|
|
|
|
|
|
|
|
unused << SendUpdateDimensions(mRect, mDimensions, mOrientation);
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
|
|
|
rfp->NotifyDimensionsChanged(mDimensions.width, mDimensions.height);
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void TabParent::HandleDoubleTap(const nsIntPoint& aPoint)
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendHandleDoubleTap(aPoint);
|
|
|
|
}
|
2009-07-01 00:39:22 +04:00
|
|
|
}
|
|
|
|
|
2012-09-15 05:16:32 +04:00
|
|
|
void TabParent::HandleSingleTap(const nsIntPoint& aPoint)
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendHandleSingleTap(aPoint);
|
|
|
|
}
|
2012-09-15 05:16:32 +04:00
|
|
|
}
|
|
|
|
|
2012-11-08 23:35:02 +04:00
|
|
|
void TabParent::HandleLongTap(const nsIntPoint& aPoint)
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (!mIsDestroyed) {
|
|
|
|
unused << SendHandleLongTap(aPoint);
|
|
|
|
}
|
2012-11-08 23:35:02 +04:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-08-13 12:06:40 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::GetTooltipText(nsAString & aTooltipText)
|
|
|
|
{
|
2010-11-21 22:21:56 +03:00
|
|
|
aTooltipText.Truncate();
|
2010-08-13 12:06:40 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-10-27 02:20:53 +04:00
|
|
|
PDocumentRendererParent*
|
|
|
|
TabParent::AllocPDocumentRenderer(const nsRect& documentRect,
|
2010-10-27 02:20:53 +04:00
|
|
|
const gfxMatrix& transform,
|
2010-10-27 02:20:53 +04:00
|
|
|
const nsString& bgcolor,
|
2012-08-22 19:56:38 +04:00
|
|
|
const uint32_t& renderFlags,
|
2010-10-27 02:20:53 +04:00
|
|
|
const bool& flushLayout,
|
|
|
|
const nsIntSize& renderSize)
|
2009-10-29 20:58:31 +03:00
|
|
|
{
|
|
|
|
return new DocumentRendererParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-12-03 11:16:14 +03:00
|
|
|
TabParent::DeallocPDocumentRenderer(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;
|
|
|
|
}
|
|
|
|
|
2010-09-10 09:00:08 +04:00
|
|
|
PContentPermissionRequestParent*
|
2012-11-14 04:06:42 +04:00
|
|
|
TabParent::AllocPContentPermissionRequest(const nsCString& type, const nsCString& access, const IPC::Principal& principal)
|
2010-05-13 21:44:51 +04:00
|
|
|
{
|
2012-11-14 04:06:42 +04:00
|
|
|
return new ContentPermissionRequestParent(type, access, mFrameElement, principal);
|
2010-05-13 21:44:51 +04:00
|
|
|
}
|
2012-07-30 18:58:26 +04:00
|
|
|
|
2010-05-13 21:44:51 +04:00
|
|
|
bool
|
2010-09-10 09:00:08 +04:00
|
|
|
TabParent::DeallocPContentPermissionRequest(PContentPermissionRequestParent* actor)
|
2010-05-13 21:44:51 +04:00
|
|
|
{
|
|
|
|
delete actor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-06-22 04:32:43 +04:00
|
|
|
bool TabParent::SendRealMouseEvent(nsMouseEvent& event)
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-20 10:48:27 +04:00
|
|
|
nsMouseEvent e(event);
|
|
|
|
MaybeForwardEventToRenderFrame(event, &e);
|
|
|
|
return PBrowserParent::SendRealMouseEvent(e);
|
2011-06-22 04:32:43 +04:00
|
|
|
}
|
|
|
|
|
2012-08-12 05:42:34 +04:00
|
|
|
bool TabParent::SendMouseWheelEvent(WheelEvent& event)
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-12 05:42:34 +04:00
|
|
|
WheelEvent e(event);
|
|
|
|
MaybeForwardEventToRenderFrame(event, &e);
|
|
|
|
return PBrowserParent::SendMouseWheelEvent(event);
|
|
|
|
}
|
|
|
|
|
2011-06-22 04:32:43 +04:00
|
|
|
bool TabParent::SendRealKeyEvent(nsKeyEvent& event)
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-20 10:48:27 +04:00
|
|
|
nsKeyEvent e(event);
|
|
|
|
MaybeForwardEventToRenderFrame(event, &e);
|
|
|
|
return PBrowserParent::SendRealKeyEvent(e);
|
2011-06-22 04:32:43 +04:00
|
|
|
}
|
|
|
|
|
2012-07-16 06:58:43 +04:00
|
|
|
bool TabParent::SendRealTouchEvent(nsTouchEvent& event)
|
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-12 00:05:52 +04:00
|
|
|
if (event.message == NS_TOUCH_START) {
|
|
|
|
MOZ_ASSERT((!sEventCapturer && mEventCaptureDepth == 0) ||
|
|
|
|
(sEventCapturer == this && mEventCaptureDepth > 0));
|
|
|
|
// We want to capture all remaining touch events in this series
|
|
|
|
// for fast-path dispatch.
|
|
|
|
sEventCapturer = this;
|
|
|
|
++mEventCaptureDepth;
|
|
|
|
}
|
|
|
|
|
2012-07-20 10:48:27 +04:00
|
|
|
nsTouchEvent e(event);
|
2012-12-20 23:54:00 +04:00
|
|
|
// PresShell::HandleEventInternal adds touches on touch end/cancel.
|
|
|
|
// This confuses remote content into thinking that the added touches
|
|
|
|
// are part of the touchend/cancel, when actually they're not.
|
|
|
|
if (event.message == NS_TOUCH_END || event.message == NS_TOUCH_CANCEL) {
|
2012-08-29 20:06:11 +04:00
|
|
|
for (int i = e.touches.Length() - 1; i >= 0; i--) {
|
2012-12-20 23:54:00 +04:00
|
|
|
if (!e.touches[i]->mChanged) {
|
2012-08-29 20:06:11 +04:00
|
|
|
e.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
|
|
|
|
2012-07-20 10:48:27 +04:00
|
|
|
MaybeForwardEventToRenderFrame(event, &e);
|
2012-08-22 14:54:20 +04:00
|
|
|
return (e.message == NS_TOUCH_MOVE) ?
|
|
|
|
PBrowserParent::SendRealTouchMoveEvent(e) :
|
|
|
|
PBrowserParent::SendRealTouchEvent(e);
|
2012-07-16 06:58:43 +04:00
|
|
|
}
|
|
|
|
|
2012-09-12 00:05:52 +04:00
|
|
|
/*static*/ TabParent*
|
|
|
|
TabParent::GetEventCapturer()
|
|
|
|
{
|
|
|
|
return sEventCapturer;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::TryCapture(const nsGUIEvent& aEvent)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(sEventCapturer == this && mEventCaptureDepth > 0);
|
|
|
|
|
|
|
|
if (aEvent.eventStructType != NS_TOUCH_EVENT) {
|
|
|
|
// Only capture of touch events is implemented, for now.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTouchEvent event(static_cast<const nsTouchEvent&>(aEvent));
|
|
|
|
|
|
|
|
bool isTouchPointUp = (event.message == NS_TOUCH_END ||
|
|
|
|
event.message == NS_TOUCH_CANCEL);
|
|
|
|
if (event.message == NS_TOUCH_START || isTouchPointUp) {
|
|
|
|
// Let the DOM see touch start/end events so that its touch-point
|
|
|
|
// state stays consistent.
|
|
|
|
if (isTouchPointUp && 0 == --mEventCaptureDepth) {
|
|
|
|
// All event series are un-captured, don't try to catch any
|
|
|
|
// more.
|
|
|
|
sEventCapturer = nullptr;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-05 15:55:25 +04:00
|
|
|
// Adjust the widget coordinates to be relative to our frame.
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
2013-03-01 23:42:49 +04:00
|
|
|
|
2013-04-05 15:55:25 +04:00
|
|
|
if (!frameLoader) {
|
|
|
|
// No frame anymore?
|
|
|
|
sEventCapturer = nullptr;
|
|
|
|
return false;
|
2013-04-05 11:40:13 +04:00
|
|
|
}
|
2013-04-05 09:19:08 +04:00
|
|
|
|
2013-04-05 15:55:25 +04:00
|
|
|
nsEventStateManager::MapEventCoordinatesForChildProcess(frameLoader, &event);
|
|
|
|
|
|
|
|
SendRealTouchEvent(event);
|
|
|
|
return true;
|
2012-09-12 00:05:52 +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,
|
2010-11-09 05:49:00 +03:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal)
|
2010-02-20 20:05:20 +03:00
|
|
|
{
|
2013-01-24 20:24:19 +04:00
|
|
|
StructuredCloneData cloneData = ipc::UnpackClonedMessageDataForParent(aData);
|
2012-08-02 10:02:29 +04:00
|
|
|
return ReceiveMessage(aMessage, true, &cloneData, aJSONRetVal);
|
2010-02-20 20:05:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::RecvAsyncMessage(const nsString& aMessage,
|
2012-08-02 10:02:29 +04:00
|
|
|
const ClonedMessageData& aData)
|
|
|
|
{
|
2013-01-24 20:24:19 +04:00
|
|
|
StructuredCloneData cloneData = ipc::UnpackClonedMessageDataForParent(aData);
|
2012-08-02 10:02:29 +04:00
|
|
|
return ReceiveMessage(aMessage, false, &cloneData, nullptr);
|
2010-03-30 00:29:45 +04:00
|
|
|
}
|
|
|
|
|
2011-06-22 04:32:43 +04:00
|
|
|
bool
|
2012-08-22 19:56:38 +04:00
|
|
|
TabParent::RecvSetCursor(const uint32_t& aCursor)
|
2011-06-22 04:32:43 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
widget->SetCursor((nsCursor) aCursor);
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
bool
|
2011-09-29 10:19:26 +04:00
|
|
|
TabParent::RecvNotifyIMEFocus(const bool& aFocus,
|
2010-10-01 18:17:37 +04:00
|
|
|
nsIMEUpdatePreference* aPreference,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t* aSeqno)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2012-11-13 17:04:44 +04:00
|
|
|
if (!widget) {
|
|
|
|
aPreference->mWantUpdates = false;
|
|
|
|
aPreference->mWantHints = false;
|
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
|
|
|
|
2010-10-01 18:17:37 +04:00
|
|
|
*aSeqno = mIMESeqno;
|
2012-07-30 18:20:58 +04:00
|
|
|
mIMETabParent = aFocus ? this : nullptr;
|
2010-09-24 07:28:15 +04:00
|
|
|
mIMESelectionAnchor = 0;
|
|
|
|
mIMESelectionFocus = 0;
|
2013-03-06 10:14:31 +04:00
|
|
|
widget->NotifyIME(aFocus ? NOTIFY_IME_OF_FOCUS : NOTIFY_IME_OF_BLUR);
|
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
|
|
|
} else {
|
|
|
|
mIMECacheText.Truncate(0);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-08-22 19:56:38 +04:00
|
|
|
TabParent::RecvNotifyIMETextChange(const uint32_t& aStart,
|
|
|
|
const uint32_t& aEnd,
|
|
|
|
const uint32_t& aNewEnd)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2013-03-06 10:14:34 +04:00
|
|
|
widget->NotifyIMEOfTextChange(aStart, aEnd, aNewEnd);
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-08-22 19:56:38 +04:00
|
|
|
TabParent::RecvNotifyIMESelection(const uint32_t& aSeqno,
|
|
|
|
const uint32_t& aAnchor,
|
|
|
|
const uint32_t& aFocus)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2010-10-01 18:17:37 +04:00
|
|
|
if (aSeqno == mIMESeqno) {
|
|
|
|
mIMESelectionAnchor = aAnchor;
|
|
|
|
mIMESelectionFocus = aFocus;
|
2013-03-06 10:14:31 +04:00
|
|
|
widget->NotifyIME(NOTIFY_IME_OF_SELECTION_CHANGE);
|
2010-10-01 18:17:37 +04:00
|
|
|
}
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvNotifyIMETextHint(const nsString& aText)
|
|
|
|
{
|
|
|
|
// Replace our cache with new text
|
|
|
|
mIMECacheText = aText;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
/**
|
|
|
|
* Try to answer query event using cached text.
|
|
|
|
*
|
|
|
|
* For NS_QUERY_SELECTED_TEXT, fail if the cache doesn't contain the whole
|
|
|
|
* selected range. (This shouldn't happen because PuppetWidget should have
|
|
|
|
* already sent the whole selection.)
|
|
|
|
*
|
|
|
|
* For NS_QUERY_TEXT_CONTENT, fail only if the cache doesn't overlap with
|
|
|
|
* the queried range. Note the difference from above. We use
|
|
|
|
* this behavior because a normal NS_QUERY_TEXT_CONTENT event is allowed to
|
|
|
|
* have out-of-bounds offsets, so that widget can request content without
|
|
|
|
* knowing the exact length of text. It's up to widget to handle cases when
|
|
|
|
* the returned offset/length are different from the queried offset/length.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
TabParent::HandleQueryContentEvent(nsQueryContentEvent& aEvent)
|
|
|
|
{
|
2011-10-17 18:59:28 +04:00
|
|
|
aEvent.mSucceeded = false;
|
|
|
|
aEvent.mWasAsync = false;
|
2010-09-24 07:28:15 +04:00
|
|
|
aEvent.mReply.mFocusedWidget = nsCOMPtr<nsIWidget>(GetWidget()).get();
|
|
|
|
|
|
|
|
switch (aEvent.message)
|
|
|
|
{
|
|
|
|
case NS_QUERY_SELECTED_TEXT:
|
|
|
|
{
|
2013-01-15 16:22:03 +04:00
|
|
|
aEvent.mReply.mOffset = std::min(mIMESelectionAnchor, mIMESelectionFocus);
|
2010-09-24 07:28:15 +04:00
|
|
|
if (mIMESelectionAnchor == mIMESelectionFocus) {
|
|
|
|
aEvent.mReply.mString.Truncate(0);
|
|
|
|
} else {
|
|
|
|
if (mIMESelectionAnchor > mIMECacheText.Length() ||
|
|
|
|
mIMESelectionFocus > mIMECacheText.Length()) {
|
|
|
|
break;
|
|
|
|
}
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t selLen = mIMESelectionAnchor > mIMESelectionFocus ?
|
2010-09-24 07:28:15 +04:00
|
|
|
mIMESelectionAnchor - mIMESelectionFocus :
|
|
|
|
mIMESelectionFocus - mIMESelectionAnchor;
|
|
|
|
aEvent.mReply.mString = Substring(mIMECacheText,
|
|
|
|
aEvent.mReply.mOffset,
|
|
|
|
selLen);
|
|
|
|
}
|
|
|
|
aEvent.mReply.mReversed = mIMESelectionFocus < mIMESelectionAnchor;
|
2011-10-17 18:59:28 +04:00
|
|
|
aEvent.mReply.mHasSelection = true;
|
|
|
|
aEvent.mSucceeded = true;
|
2010-09-24 07:28:15 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_QUERY_TEXT_CONTENT:
|
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t inputOffset = aEvent.mInput.mOffset,
|
2010-09-24 07:28:15 +04:00
|
|
|
inputEnd = inputOffset + aEvent.mInput.mLength;
|
|
|
|
|
|
|
|
if (inputEnd > mIMECacheText.Length()) {
|
|
|
|
inputEnd = mIMECacheText.Length();
|
|
|
|
}
|
|
|
|
if (inputEnd < inputOffset) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
aEvent.mReply.mOffset = inputOffset;
|
|
|
|
aEvent.mReply.mString = Substring(mIMECacheText,
|
|
|
|
inputOffset,
|
|
|
|
inputEnd - inputOffset);
|
2011-10-17 18:59:28 +04:00
|
|
|
aEvent.mSucceeded = true;
|
2010-09-24 07:28:15 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:34:26 +04:00
|
|
|
bool
|
2010-10-01 18:17:37 +04:00
|
|
|
TabParent::SendCompositionEvent(nsCompositionEvent& event)
|
2010-09-24 07:34:26 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-09-22 13:17:40 +04:00
|
|
|
mIMEComposing = event.message != NS_COMPOSITION_END;
|
2013-01-15 16:22:03 +04:00
|
|
|
mIMECompositionStart = std::min(mIMESelectionAnchor, mIMESelectionFocus);
|
2010-09-24 07:34:26 +04:00
|
|
|
if (mIMECompositionEnding)
|
|
|
|
return true;
|
2010-10-01 18:17:37 +04:00
|
|
|
event.seqno = ++mIMESeqno;
|
2010-09-24 07:34:26 +04:00
|
|
|
return PBrowserParent::SendCompositionEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
/**
|
2013-03-06 10:14:31 +04:00
|
|
|
* During REQUEST_TO_COMMIT_COMPOSITION or REQUEST_TO_CANCEL_COMPOSITION,
|
|
|
|
* widget usually sends a NS_TEXT_TEXT event to finalize or clear the
|
|
|
|
* composition, respectively
|
2010-09-24 07:28:15 +04:00
|
|
|
*
|
|
|
|
* Because the event will not reach content in time, we intercept it
|
|
|
|
* here and pass the text as the EndIMEComposition return value
|
|
|
|
*/
|
|
|
|
bool
|
2010-10-01 18:17:37 +04:00
|
|
|
TabParent::SendTextEvent(nsTextEvent& event)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-09-24 07:28:15 +04:00
|
|
|
if (mIMECompositionEnding) {
|
|
|
|
mIMECompositionText = event.theText;
|
|
|
|
return true;
|
|
|
|
}
|
2010-09-24 07:34:26 +04:00
|
|
|
|
|
|
|
// We must be able to simulate the selection because
|
|
|
|
// we might not receive selection updates in time
|
|
|
|
if (!mIMEComposing) {
|
2013-01-15 16:22:03 +04:00
|
|
|
mIMECompositionStart = std::min(mIMESelectionAnchor, mIMESelectionFocus);
|
2010-09-24 07:34:26 +04:00
|
|
|
}
|
|
|
|
mIMESelectionAnchor = mIMESelectionFocus =
|
|
|
|
mIMECompositionStart + event.theText.Length();
|
|
|
|
|
2010-10-01 18:17:37 +04:00
|
|
|
event.seqno = ++mIMESeqno;
|
2010-09-24 07:28:15 +04:00
|
|
|
return PBrowserParent::SendTextEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:34:26 +04:00
|
|
|
bool
|
2010-10-01 18:17:37 +04:00
|
|
|
TabParent::SendSelectionEvent(nsSelectionEvent& event)
|
2010-09-24 07:34:26 +04:00
|
|
|
{
|
2012-11-10 10:09:24 +04:00
|
|
|
if (mIsDestroyed) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-09-24 07:34:26 +04:00
|
|
|
mIMESelectionAnchor = event.mOffset + (event.mReversed ? event.mLength : 0);
|
|
|
|
mIMESelectionFocus = event.mOffset + (!event.mReversed ? event.mLength : 0);
|
2010-10-01 18:17:37 +04:00
|
|
|
event.seqno = ++mIMESeqno;
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*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);
|
|
|
|
}
|
|
|
|
|
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,
|
2010-09-24 07:28:15 +04:00
|
|
|
nsString* aComposition)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
mIMECompositionEnding = true;
|
2010-09-24 07:28:15 +04:00
|
|
|
|
2013-03-06 10:14:31 +04:00
|
|
|
widget->NotifyIME(aCancel ? REQUEST_TO_CANCEL_COMPOSITION :
|
|
|
|
REQUEST_TO_COMMIT_COMPOSITION);
|
2010-09-24 07:28:15 +04:00
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
mIMECompositionEnding = false;
|
2010-09-24 07:28:15 +04:00
|
|
|
*aComposition = mIMECompositionText;
|
|
|
|
mIMECompositionText.Truncate(0);
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
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-09-24 07:28:15 +04:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2010-11-23 09:48:03 +03:00
|
|
|
if (!widget || !AllowContentIME())
|
|
|
|
return true;
|
|
|
|
|
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);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-12-03 04:24:04 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetDPI(float* aValue)
|
|
|
|
{
|
2012-04-25 20:35:58 +04:00
|
|
|
TryCacheDPI();
|
2012-05-08 20:20:35 +04:00
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(mDPI > 0,
|
2010-12-09 21:57:05 +03:00
|
|
|
"Must not ask for DPI before OwnerElement is received!");
|
|
|
|
*aValue = mDPI;
|
2010-12-03 04:24:04 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-07-22 04:49:35 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetWidgetNativeData(WindowsHandle* aValue)
|
|
|
|
{
|
|
|
|
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));
|
|
|
|
return true;
|
2011-07-22 04:49:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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,
|
2010-11-09 05:49:00 +03:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal)
|
2010-02-20 20:05:20 +03:00
|
|
|
{
|
2010-08-06 02:11:23 +04:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (frameLoader && frameLoader->GetFrameMessageManager()) {
|
2011-06-16 22:21:08 +04:00
|
|
|
nsRefPtr<nsFrameMessageManager> manager =
|
|
|
|
frameLoader->GetFrameMessageManager();
|
2011-03-24 23:00:45 +03:00
|
|
|
JSContext* ctx = manager->GetJSContext();
|
|
|
|
JSAutoRequest ar(ctx);
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t len = 0; //TODO: obtain a real value in bug 572685
|
2011-03-24 23:00:45 +03:00
|
|
|
// Because we want JS messages to have always the same properties,
|
|
|
|
// create array even if len == 0.
|
|
|
|
JSObject* objectsArray = JS_NewArrayObject(ctx, len, NULL);
|
|
|
|
if (!objectsArray) {
|
|
|
|
return false;
|
2010-02-20 20:05:20 +03:00
|
|
|
}
|
2010-08-06 02:11:23 +04:00
|
|
|
|
|
|
|
manager->ReceiveMessage(mFrameElement,
|
|
|
|
aMessage,
|
|
|
|
aSync,
|
2012-08-02 10:02:29 +04:00
|
|
|
aCloneData,
|
2010-08-06 02:11:23 +04:00
|
|
|
objectsArray,
|
|
|
|
aJSONRetVal);
|
2010-02-20 20:05:20 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-01 21:21:12 +04:00
|
|
|
PIndexedDBParent*
|
|
|
|
TabParent::AllocPIndexedDB(const nsCString& aASCIIOrigin, bool* /* aAllowed */)
|
|
|
|
{
|
2012-10-25 21:12:14 +04:00
|
|
|
return new IndexedDBParent(this);
|
2012-06-01 21:21:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPIndexedDB(PIndexedDBParent* aActor)
|
|
|
|
{
|
|
|
|
delete aActor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvPIndexedDBConstructor(PIndexedDBParent* aActor,
|
|
|
|
const nsCString& aASCIIOrigin,
|
|
|
|
bool* aAllowed)
|
|
|
|
{
|
|
|
|
nsRefPtr<IndexedDatabaseManager> mgr = IndexedDatabaseManager::GetOrCreate();
|
|
|
|
NS_ENSURE_TRUE(mgr, false);
|
|
|
|
|
|
|
|
if (!IndexedDatabaseManager::IsMainProcess()) {
|
|
|
|
NS_RUNTIMEABORT("Not supported yet!");
|
|
|
|
}
|
|
|
|
|
2012-10-23 20:31:19 +04:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
// XXXbent Need to make sure we have a whitelist for chrome databases!
|
|
|
|
|
2012-11-10 22:32:37 +04:00
|
|
|
// Verify that the child is requesting to access a database it's allowed to
|
|
|
|
// see. (aASCIIOrigin here specifies a TabContext + a website origin, and
|
|
|
|
// we're checking that the TabContext may access it.)
|
|
|
|
//
|
|
|
|
// We have to check IsBrowserOrApp() because TabContextMayAccessOrigin will
|
|
|
|
// fail if we're not a browser-or-app, since aASCIIOrigin will be a plain URI,
|
|
|
|
// but TabContextMayAccessOrigin will construct an extended origin using
|
|
|
|
// app-id 0. Note that as written below, we allow a non browser-or-app child
|
|
|
|
// to read any database. That's a security hole, but we don't ship a
|
|
|
|
// configuration which creates non browser-or-app children, so it's not a big
|
|
|
|
// deal.
|
|
|
|
if (!aASCIIOrigin.EqualsLiteral("chrome") && IsBrowserOrApp() &&
|
|
|
|
!IndexedDatabaseManager::TabContextMayAccessOrigin(*this, aASCIIOrigin)) {
|
|
|
|
|
|
|
|
NS_WARNING("App attempted to open databases that it does not have "
|
|
|
|
"permission to access!");
|
|
|
|
return false;
|
2012-10-23 20:31:19 +04:00
|
|
|
}
|
|
|
|
|
2012-06-01 21:21:12 +04:00
|
|
|
nsCOMPtr<nsINode> node = do_QueryInterface(GetOwnerElement());
|
|
|
|
NS_ENSURE_TRUE(node, false);
|
|
|
|
|
|
|
|
nsIDocument* doc = node->GetOwnerDocument();
|
|
|
|
NS_ENSURE_TRUE(doc, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsPIDOMWindow> window = doc->GetInnerWindow();
|
|
|
|
NS_ENSURE_TRUE(window, false);
|
|
|
|
|
2012-08-02 10:02:29 +04:00
|
|
|
ContentParent* contentParent = static_cast<ContentParent*>(Manager());
|
|
|
|
NS_ASSERTION(contentParent, "Null manager?!");
|
|
|
|
|
2012-06-01 21:21:12 +04:00
|
|
|
nsRefPtr<IDBFactory> factory;
|
2012-10-23 20:31:19 +04:00
|
|
|
rv = IDBFactory::Create(window, aASCIIOrigin, contentParent,
|
|
|
|
getter_AddRefs(factory));
|
2012-06-01 21:21:12 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
|
|
|
if (!factory) {
|
|
|
|
*aAllowed = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
IndexedDBParent* actor = static_cast<IndexedDBParent*>(aActor);
|
|
|
|
actor->mFactory = factory;
|
|
|
|
actor->mASCIIOrigin = aASCIIOrigin;
|
|
|
|
|
|
|
|
*aAllowed = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-06-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.
|
|
|
|
return wwatch->GetPrompt(window, iid,
|
|
|
|
reinterpret_cast<void**>(aResult));
|
|
|
|
}
|
|
|
|
|
2010-05-17 15:25:22 +04:00
|
|
|
PContentDialogParent*
|
2012-08-22 19:56:38 +04:00
|
|
|
TabParent::AllocPContentDialog(const uint32_t& aType,
|
2010-05-17 15:25:22 +04:00
|
|
|
const nsCString& aName,
|
|
|
|
const nsCString& aFeatures,
|
2010-11-09 05:49:00 +03:00
|
|
|
const InfallibleTArray<int>& aIntParams,
|
|
|
|
const InfallibleTArray<nsString>& aStringParams)
|
2010-05-17 15:25:22 +04:00
|
|
|
{
|
|
|
|
ContentDialogParent* parent = new ContentDialogParent();
|
|
|
|
nsCOMPtr<nsIDialogParamBlock> params =
|
|
|
|
do_CreateInstance(NS_DIALOGPARAMBLOCK_CONTRACTID);
|
|
|
|
TabChild::ArraysToParams(aIntParams, aStringParams, params);
|
|
|
|
mDelayedDialogs.AppendElement(new DelayedDialogData(parent, aType, aName,
|
|
|
|
aFeatures, params));
|
|
|
|
nsRefPtr<nsIRunnable> ev =
|
|
|
|
NS_NewRunnableMethod(this, &TabParent::HandleDelayedDialogs);
|
|
|
|
NS_DispatchToCurrentThread(ev);
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::HandleDelayedDialogs()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWindowWatcher> ww = do_GetService(NS_WINDOWWATCHER_CONTRACTID);
|
|
|
|
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-05-17 15:25:22 +04:00
|
|
|
}
|
|
|
|
nsCOMPtr<nsIDialogCreator> dialogCreator = do_QueryInterface(mBrowserDOMWindow);
|
|
|
|
while (!ShouldDelayDialogs() && mDelayedDialogs.Length()) {
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t index = mDelayedDialogs.Length() - 1;
|
2010-05-17 15:25:22 +04:00
|
|
|
DelayedDialogData* data = mDelayedDialogs[index];
|
|
|
|
mDelayedDialogs.RemoveElementAt(index);
|
|
|
|
nsCOMPtr<nsIDialogParamBlock> params;
|
|
|
|
params.swap(data->mParams);
|
|
|
|
PContentDialogParent* dialog = data->mDialog;
|
|
|
|
if (dialogCreator) {
|
|
|
|
dialogCreator->OpenDialog(data->mType,
|
|
|
|
data->mName, data->mFeatures,
|
|
|
|
params, mFrameElement);
|
|
|
|
} else if (ww) {
|
2012-09-02 06:35:17 +04:00
|
|
|
nsAutoCString url;
|
2010-05-17 15:25:22 +04:00
|
|
|
if (data->mType) {
|
|
|
|
if (data->mType == nsIDialogCreator::SELECT_DIALOG) {
|
|
|
|
url.Assign("chrome://global/content/selectDialog.xul");
|
|
|
|
} else if (data->mType == nsIDialogCreator::GENERIC_DIALOG) {
|
|
|
|
url.Assign("chrome://global/content/commonDialog.xul");
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> arguments(do_QueryInterface(params));
|
|
|
|
nsCOMPtr<nsIDOMWindow> dialog;
|
|
|
|
ww->OpenWindow(window, url.get(), data->mName.get(),
|
|
|
|
data->mFeatures.get(), arguments, getter_AddRefs(dialog));
|
|
|
|
} else {
|
|
|
|
NS_WARNING("unknown dialog types aren't automatically supported in E10s yet!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delete data;
|
|
|
|
if (dialog) {
|
2012-08-22 19:56:38 +04:00
|
|
|
InfallibleTArray<int32_t> intParams;
|
2010-11-09 05:49:00 +03:00
|
|
|
InfallibleTArray<nsString> stringParams;
|
2010-05-17 15:25:22 +04:00
|
|
|
TabChild::ParamsToArrays(params, intParams, stringParams);
|
2010-07-19 22:33:33 +04:00
|
|
|
unused << PContentDialogParent::Send__delete__(dialog,
|
|
|
|
intParams, stringParams);
|
2010-05-17 15:25:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ShouldDelayDialogs() && mDelayedDialogs.Length()) {
|
2011-10-18 14:53:36 +04:00
|
|
|
nsContentUtils::DispatchTrustedEvent(frame->OwnerDoc(), frame,
|
2010-05-17 15:25:22 +04:00
|
|
|
NS_LITERAL_STRING("MozDelayedModalDialog"),
|
2011-10-17 18:59:28 +04:00
|
|
|
true, true);
|
2010-05-17 15:25:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
PRenderFrameParent*
|
2012-07-20 10:48:27 +04:00
|
|
|
TabParent::AllocPRenderFrame(ScrollingBehavior* aScrolling,
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 13:20:52 +04:00
|
|
|
TextureFactoryIdentifier* aTextureFactoryIdentifier,
|
2012-07-18 03:59:45 +04:00
|
|
|
uint64_t* aLayersId)
|
2010-08-21 03:24:41 +04:00
|
|
|
{
|
2012-07-20 10:48:27 +04:00
|
|
|
MOZ_ASSERT(ManagedPRenderFrameParent().IsEmpty());
|
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
2012-10-09 21:26:16 +04:00
|
|
|
if (!frameLoader) {
|
2013-03-28 22:25:58 +04:00
|
|
|
NS_WARNING("Can't allocate graphics resources, aborting subprocess");
|
2012-10-09 21:26:16 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2012-07-20 10:48:27 +04:00
|
|
|
*aScrolling = UseAsyncPanZoom() ? ASYNC_PAN_ZOOM : DEFAULT_SCROLLING;
|
2012-07-18 03:59:45 +04:00
|
|
|
return new RenderFrameParent(frameLoader,
|
2012-07-20 10:48:27 +04:00
|
|
|
*aScrolling,
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 13:20:52 +04:00
|
|
|
aTextureFactoryIdentifier, aLayersId);
|
2010-08-21 03:24:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPRenderFrame(PRenderFrameParent* aFrame)
|
|
|
|
{
|
|
|
|
delete aFrame;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-10-20 21:12:32 +04:00
|
|
|
mozilla::docshell::POfflineCacheUpdateParent*
|
2012-08-23 23:33:46 +04:00
|
|
|
TabParent::AllocPOfflineCacheUpdate(const URIParams& aManifestURI,
|
|
|
|
const URIParams& aDocumentURI,
|
2010-10-20 21:12:32 +04:00
|
|
|
const bool& stickDocument)
|
|
|
|
{
|
|
|
|
nsRefPtr<mozilla::docshell::OfflineCacheUpdateParent> update =
|
2012-12-29 13:02:16 +04:00
|
|
|
new mozilla::docshell::OfflineCacheUpdateParent(OwnOrContainingAppId(),
|
|
|
|
IsBrowserElement());
|
2010-10-20 21:12:32 +04:00
|
|
|
|
2012-12-29 13:02:16 +04:00
|
|
|
nsresult rv = update->Schedule(aManifestURI, aDocumentURI, stickDocument);
|
2010-10-20 21:12:32 +04:00
|
|
|
if (NS_FAILED(rv))
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-10-20 21:12:32 +04:00
|
|
|
|
|
|
|
POfflineCacheUpdateParent* result = update.get();
|
|
|
|
update.forget();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPOfflineCacheUpdate(mozilla::docshell::POfflineCacheUpdateParent* actor)
|
|
|
|
{
|
|
|
|
mozilla::docshell::OfflineCacheUpdateParent* update =
|
|
|
|
static_cast<mozilla::docshell::OfflineCacheUpdateParent*>(actor);
|
|
|
|
|
|
|
|
update->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2010-05-17 15:25:22 +04:00
|
|
|
TabParent::ShouldDelayDialogs()
|
|
|
|
{
|
2010-08-06 02:11:23 +04:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
2011-10-17 18:59:28 +04:00
|
|
|
NS_ENSURE_TRUE(frameLoader, true);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool delay = false;
|
2010-05-17 15:25:22 +04:00
|
|
|
frameLoader->GetDelayRemoteDialogs(&delay);
|
|
|
|
return delay;
|
|
|
|
}
|
|
|
|
|
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>
|
|
|
|
TabParent::GetFrameLoader() const
|
|
|
|
{
|
|
|
|
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
|
|
|
|
TabParent::TryCacheDPI()
|
|
|
|
{
|
|
|
|
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.
|
|
|
|
nsCOMPtr<nsIDOMDocument> ownerDoc;
|
|
|
|
mFrameElement->GetOwnerDocument(getter_AddRefs(ownerDoc));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc = do_QueryInterface(ownerDoc);
|
|
|
|
widget = nsContentUtils::WidgetForDocument(doc);
|
|
|
|
}
|
|
|
|
|
2012-04-25 20:35:58 +04:00
|
|
|
if (widget) {
|
|
|
|
mDPI = widget->GetDPI();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2012-07-20 10:48:27 +04:00
|
|
|
bool
|
|
|
|
TabParent::UseAsyncPanZoom()
|
|
|
|
{
|
|
|
|
bool usingOffMainThreadCompositing = !!CompositorParent::CompositorLoop();
|
|
|
|
bool asyncPanZoomEnabled =
|
|
|
|
Preferences::GetBool("layers.async-pan-zoom.enabled", false);
|
2012-11-28 00:43:52 +04:00
|
|
|
return (usingOffMainThreadCompositing && asyncPanZoomEnabled &&
|
|
|
|
GetScrollingBehavior() == ASYNC_PAN_ZOOM);
|
2012-07-20 10:48:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::MaybeForwardEventToRenderFrame(const nsInputEvent& aEvent,
|
|
|
|
nsInputEvent* aOutEvent)
|
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
2013-04-05 15:55:25 +04:00
|
|
|
rfp->NotifyInputEvent(aEvent, aOutEvent);
|
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)
|
|
|
|
{
|
|
|
|
*aOutWindowOpened =
|
|
|
|
BrowserElementParent::OpenWindowOOP(static_cast<TabParent*>(aOpener),
|
|
|
|
this, aURL, aName, aFeatures);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-29 06:16:36 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvPRenderFrameConstructor(PRenderFrameParent* actor,
|
|
|
|
ScrollingBehavior* scrolling,
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 13:20:52 +04:00
|
|
|
TextureFactoryIdentifier* factoryIdentifier,
|
2012-09-29 06:16:36 +04:00
|
|
|
uint64_t* layersId)
|
|
|
|
{
|
|
|
|
RenderFrameParent* rfp = GetRenderFrame();
|
|
|
|
if (mDimensions != nsIntSize() && rfp) {
|
|
|
|
rfp->NotifyDimensionsChanged(mDimensions.width, mDimensions.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-09 08:39:02 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvZoomToRect(const gfxRect& aRect)
|
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
|
|
|
rfp->ZoomToRect(aRect);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-29 06:18:18 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvUpdateZoomConstraints(const bool& aAllowZoom,
|
|
|
|
const float& aMinZoom,
|
|
|
|
const float& aMaxZoom)
|
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
|
|
|
rfp->UpdateZoomConstraints(aAllowZoom, aMinZoom, aMaxZoom);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:37:06 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvContentReceivedTouch(const bool& aPreventDefault)
|
|
|
|
{
|
|
|
|
if (RenderFrameParent* rfp = GetRenderFrame()) {
|
|
|
|
rfp->ContentReceivedTouch(aPreventDefault);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
} // namespace tabs
|
|
|
|
} // namespace mozilla
|