2009-08-18 12:05:15 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim: set sw=4 ts=8 et tw=80 : */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-06-30 13:39:22 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_tabs_TabParent_h
|
|
|
|
#define mozilla_tabs_TabParent_h
|
|
|
|
|
2013-10-22 06:27:35 -07:00
|
|
|
#include "mozilla/EventForwards.h"
|
2010-07-19 11:33:33 -07:00
|
|
|
#include "mozilla/dom/PBrowserParent.h"
|
2014-02-17 16:30:06 -08:00
|
|
|
#include "mozilla/dom/PFilePickerParent.h"
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 10:32:37 -08:00
|
|
|
#include "mozilla/dom/TabContext.h"
|
2009-12-31 17:35:55 -08:00
|
|
|
#include "nsCOMPtr.h"
|
2012-06-22 18:27:30 -07:00
|
|
|
#include "nsIAuthPromptProvider.h"
|
2009-12-31 17:35:55 -08:00
|
|
|
#include "nsIBrowserDOMWindow.h"
|
2010-08-13 01:06:40 -07:00
|
|
|
#include "nsISecureBrowserUI.h"
|
2012-06-22 18:27:30 -07:00
|
|
|
#include "nsITabParent.h"
|
2014-01-22 12:27:23 -08:00
|
|
|
#include "nsIXULBrowserWindow.h"
|
2013-07-11 07:43:35 -07:00
|
|
|
#include "Units.h"
|
2013-08-27 19:59:14 -07:00
|
|
|
#include "js/TypeDecls.h"
|
2009-12-31 17:35:55 -08:00
|
|
|
|
2012-06-22 18:27:30 -07:00
|
|
|
class nsFrameLoader;
|
2013-10-18 13:57:55 -07:00
|
|
|
class nsIContent;
|
2013-11-06 09:21:15 -08:00
|
|
|
class nsIPrincipal;
|
2012-06-22 18:27:30 -07:00
|
|
|
class nsIURI;
|
2013-10-18 13:57:55 -07:00
|
|
|
class nsIWidget;
|
2014-01-10 17:10:57 -08:00
|
|
|
class nsILoadContext;
|
2013-07-10 15:05:39 -07:00
|
|
|
class CpowHolder;
|
2009-11-06 12:43:39 -08:00
|
|
|
|
2009-06-30 13:39:22 -07:00
|
|
|
namespace mozilla {
|
2012-07-19 23:48:27 -07:00
|
|
|
|
|
|
|
namespace layers {
|
|
|
|
struct FrameMetrics;
|
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 02:20:52 -07:00
|
|
|
struct TextureFactoryIdentifier;
|
2012-07-19 23:48:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace layout {
|
|
|
|
class RenderFrameParent;
|
|
|
|
}
|
|
|
|
|
2009-08-12 09:18:08 -07:00
|
|
|
namespace dom {
|
2009-06-30 13:39:22 -07:00
|
|
|
|
2012-08-01 23:02:29 -07:00
|
|
|
class ClonedMessageData;
|
2013-09-23 14:30:40 -07:00
|
|
|
class ContentParent;
|
2013-07-23 16:39:17 -07:00
|
|
|
class Element;
|
2012-08-01 23:02:29 -07:00
|
|
|
struct StructuredCloneData;
|
|
|
|
|
2010-07-19 11:33:33 -07:00
|
|
|
class TabParent : public PBrowserParent
|
2010-06-24 15:20:42 -07:00
|
|
|
, public nsITabParent
|
|
|
|
, public nsIAuthPromptProvider
|
2010-08-13 01:06:40 -07:00
|
|
|
, public nsISecureBrowserUI
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 10:32:37 -08:00
|
|
|
, public TabContext
|
2009-06-30 13:39:22 -07:00
|
|
|
{
|
2012-08-01 23:02:29 -07:00
|
|
|
typedef mozilla::dom::ClonedMessageData ClonedMessageData;
|
2012-11-27 12:43:52 -08:00
|
|
|
typedef mozilla::layout::ScrollingBehavior ScrollingBehavior;
|
2012-08-01 23:02:29 -07:00
|
|
|
|
2009-06-30 13:39:22 -07:00
|
|
|
public:
|
2014-01-24 01:02:23 -08:00
|
|
|
// nsITabParent
|
|
|
|
NS_DECL_NSITABPARENT
|
|
|
|
|
2014-01-10 17:10:57 -08:00
|
|
|
TabParent(ContentParent* aManager, const TabContext& aContext, uint32_t aChromeFlags);
|
2009-06-30 13:39:22 -07:00
|
|
|
virtual ~TabParent();
|
2013-07-23 16:39:17 -07:00
|
|
|
Element* GetOwnerElement() const { return mFrameElement; }
|
|
|
|
void SetOwnerElement(Element* aElement);
|
2013-04-25 17:53:26 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mozapptype attribute from this TabParent's owner DOM element.
|
|
|
|
*/
|
|
|
|
void GetAppType(nsAString& aOut);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true iff this TabParent's nsIFrameLoader is visible.
|
|
|
|
*
|
|
|
|
* The frameloader's visibility can be independent of e.g. its docshell's
|
|
|
|
* visibility.
|
|
|
|
*/
|
|
|
|
bool IsVisible();
|
|
|
|
|
2010-08-17 20:19:24 -07:00
|
|
|
nsIBrowserDOMWindow *GetBrowserDOMWindow() { return mBrowserDOMWindow; }
|
2009-12-31 17:35:55 -08:00
|
|
|
void SetBrowserDOMWindow(nsIBrowserDOMWindow* aBrowserDOMWindow) {
|
|
|
|
mBrowserDOMWindow = aBrowserDOMWindow;
|
|
|
|
}
|
2012-08-08 19:58:06 -07:00
|
|
|
|
2014-01-10 17:10:57 -08:00
|
|
|
already_AddRefed<nsILoadContext> GetLoadContext();
|
|
|
|
|
2014-01-22 12:27:23 -08:00
|
|
|
nsIXULBrowserWindow* GetXULBrowserWindow();
|
|
|
|
|
2012-09-11 13:05:52 -07:00
|
|
|
/**
|
|
|
|
* Return the TabParent that has decided it wants to capture an
|
|
|
|
* event series for fast-path dispatch to its subprocess, if one
|
|
|
|
* has.
|
|
|
|
*
|
|
|
|
* DOM event dispatch and widget are free to ignore capture
|
|
|
|
* requests from TabParents; the end result wrt remote content is
|
|
|
|
* (must be) always the same, albeit usually slower without
|
|
|
|
* subprocess capturing. This allows frontends/widget backends to
|
|
|
|
* "opt in" to faster cross-process dispatch.
|
|
|
|
*/
|
|
|
|
static TabParent* GetEventCapturer();
|
|
|
|
/**
|
|
|
|
* If this is the current event capturer, give this a chance to
|
|
|
|
* capture the event. If it was captured, return true, false
|
|
|
|
* otherwise. Un-captured events should follow normal DOM
|
|
|
|
* dispatch; captured events should result in no further
|
|
|
|
* processing from the caller of TryCapture().
|
|
|
|
*
|
|
|
|
* It's an error to call TryCapture() if this isn't the event
|
|
|
|
* capturer.
|
|
|
|
*/
|
2013-10-01 20:46:03 -07:00
|
|
|
bool TryCapture(const WidgetGUIEvent& aEvent);
|
2012-09-11 13:05:52 -07:00
|
|
|
|
2011-01-05 20:54:47 -08:00
|
|
|
void Destroy();
|
|
|
|
|
2014-01-17 09:46:41 -08:00
|
|
|
virtual bool RecvMoveFocus(const bool& aForward) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvEvent(const RemoteDOMEvent& aEvent) MOZ_OVERRIDE;
|
2014-03-18 08:16:47 -07:00
|
|
|
virtual bool RecvReplyKeyEvent(const WidgetKeyboardEvent& event);
|
2014-01-17 09:46:41 -08:00
|
|
|
virtual bool RecvPRenderFrameConstructor(PRenderFrameParent* actor) MOZ_OVERRIDE;
|
2014-01-15 13:10:39 -08:00
|
|
|
virtual bool RecvInitRenderFrame(PRenderFrameParent* aFrame,
|
|
|
|
ScrollingBehavior* scrolling,
|
|
|
|
TextureFactoryIdentifier* identifier,
|
|
|
|
uint64_t* layersId,
|
2014-01-17 09:46:41 -08:00
|
|
|
bool *aSuccess) MOZ_OVERRIDE;
|
2012-06-12 15:01:25 -07:00
|
|
|
virtual bool RecvBrowserFrameOpenWindow(PBrowserParent* aOpener,
|
|
|
|
const nsString& aURL,
|
|
|
|
const nsString& aName,
|
|
|
|
const nsString& aFeatures,
|
2014-01-17 09:46:41 -08:00
|
|
|
bool* aOutWindowOpened) MOZ_OVERRIDE;
|
|
|
|
virtual bool AnswerCreateWindow(PBrowserParent** retval) MOZ_OVERRIDE;
|
2010-07-19 11:33:33 -07:00
|
|
|
virtual bool RecvSyncMessage(const nsString& aMessage,
|
2012-08-01 23:02:29 -07:00
|
|
|
const ClonedMessageData& aData,
|
2013-07-10 15:05:39 -07:00
|
|
|
const InfallibleTArray<CpowEntry>& aCpows,
|
2013-11-06 09:21:15 -08:00
|
|
|
const IPC::Principal& aPrincipal,
|
2014-01-17 09:46:41 -08:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal) MOZ_OVERRIDE;
|
2013-10-01 09:15:06 -07:00
|
|
|
virtual bool AnswerRpcMessage(const nsString& aMessage,
|
|
|
|
const ClonedMessageData& aData,
|
|
|
|
const InfallibleTArray<CpowEntry>& aCpows,
|
2013-11-06 09:21:15 -08:00
|
|
|
const IPC::Principal& aPrincipal,
|
2014-01-17 09:46:41 -08:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal) MOZ_OVERRIDE;
|
2010-07-19 11:33:33 -07:00
|
|
|
virtual bool RecvAsyncMessage(const nsString& aMessage,
|
2013-07-10 15:05:39 -07:00
|
|
|
const ClonedMessageData& aData,
|
2013-11-06 09:21:15 -08:00
|
|
|
const InfallibleTArray<CpowEntry>& aCpows,
|
2014-01-17 09:46:41 -08:00
|
|
|
const IPC::Principal& aPrincipal) MOZ_OVERRIDE;
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool RecvNotifyIMEFocus(const bool& aFocus,
|
2010-10-01 07:17:37 -07:00
|
|
|
nsIMEUpdatePreference* aPreference,
|
2014-01-17 09:46:41 -08:00
|
|
|
uint32_t* aSeqno) MOZ_OVERRIDE;
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool RecvNotifyIMETextChange(const uint32_t& aStart,
|
|
|
|
const uint32_t& aEnd,
|
2014-02-25 16:48:02 -08:00
|
|
|
const uint32_t& aNewEnd,
|
|
|
|
const bool& aCausedByComposition) MOZ_OVERRIDE;
|
2013-11-06 16:11:11 -08:00
|
|
|
virtual bool RecvNotifyIMESelectedCompositionRect(const uint32_t& aOffset,
|
2014-01-16 02:04:39 -08:00
|
|
|
const nsIntRect& aRect,
|
|
|
|
const nsIntRect& aCaretRect) MOZ_OVERRIDE;
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool RecvNotifyIMESelection(const uint32_t& aSeqno,
|
|
|
|
const uint32_t& aAnchor,
|
2014-02-25 16:48:02 -08:00
|
|
|
const uint32_t& aFocus,
|
|
|
|
const bool& aCausedByComposition) MOZ_OVERRIDE;
|
2014-01-17 09:46:41 -08:00
|
|
|
virtual bool RecvNotifyIMETextHint(const nsString& aText) MOZ_OVERRIDE;
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool RecvEndIMEComposition(const bool& aCancel,
|
2014-01-17 09:46:41 -08:00
|
|
|
nsString* aComposition) MOZ_OVERRIDE;
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool RecvGetInputContext(int32_t* aIMEEnabled,
|
2012-10-26 16:35:20 -07:00
|
|
|
int32_t* aIMEOpen,
|
2014-01-17 09:46:41 -08:00
|
|
|
intptr_t* aNativeIMEContext) MOZ_OVERRIDE;
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool RecvSetInputContext(const int32_t& aIMEEnabled,
|
|
|
|
const int32_t& aIMEOpen,
|
2011-11-27 03:51:52 -08:00
|
|
|
const nsString& aType,
|
2012-08-26 19:16:22 -07:00
|
|
|
const nsString& aInputmode,
|
2011-11-27 03:51:52 -08:00
|
|
|
const nsString& aActionHint,
|
2012-08-22 08:56:38 -07:00
|
|
|
const int32_t& aCause,
|
2014-01-17 09:46:41 -08:00
|
|
|
const int32_t& aFocusChange) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvRequestFocus(const bool& aCanRaise) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvSetCursor(const uint32_t& aValue) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvSetBackgroundColor(const nscolor& aValue) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvSetStatus(const uint32_t& aType, const nsString& aStatus) MOZ_OVERRIDE;
|
2014-04-04 14:50:42 -07:00
|
|
|
virtual bool RecvIsParentWindowMainWidgetVisible(bool* aIsVisible);
|
2014-01-22 12:27:23 -08:00
|
|
|
virtual bool RecvShowTooltip(const uint32_t& aX, const uint32_t& aY, const nsString& aTooltip);
|
|
|
|
virtual bool RecvHideTooltip();
|
2014-01-17 09:46:41 -08:00
|
|
|
virtual bool RecvGetDPI(float* aValue) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvGetDefaultScale(double* aValue) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvGetWidgetNativeData(WindowsHandle* aValue) MOZ_OVERRIDE;
|
2013-11-13 10:20:30 -08:00
|
|
|
virtual bool RecvZoomToRect(const uint32_t& aPresShellId,
|
|
|
|
const ViewID& aViewId,
|
2014-01-17 09:46:41 -08:00
|
|
|
const CSSRect& aRect) MOZ_OVERRIDE;
|
2013-11-14 09:35:41 -08:00
|
|
|
virtual bool RecvUpdateZoomConstraints(const uint32_t& aPresShellId,
|
|
|
|
const ViewID& aViewId,
|
2013-11-08 16:07:00 -08:00
|
|
|
const bool& aIsRoot,
|
2014-01-17 09:46:41 -08:00
|
|
|
const ZoomConstraints& aConstraints) MOZ_OVERRIDE;
|
2013-11-13 10:20:31 -08:00
|
|
|
virtual bool RecvContentReceivedTouch(const ScrollableLayerGuid& aGuid,
|
2014-01-17 09:46:41 -08:00
|
|
|
const bool& aPreventDefault) MOZ_OVERRIDE;
|
2014-02-23 12:19:43 -08:00
|
|
|
|
|
|
|
virtual PColorPickerParent*
|
|
|
|
AllocPColorPickerParent(const nsString& aTitle, const nsString& aInitialColor) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPColorPickerParent(PColorPickerParent* aColorPicker) MOZ_OVERRIDE;
|
|
|
|
|
2009-06-30 13:39:22 -07:00
|
|
|
void LoadURL(nsIURI* aURI);
|
2010-08-20 16:24:40 -07:00
|
|
|
// XXX/cjones: it's not clear what we gain by hiding these
|
|
|
|
// message-sending functions under a layer of indirection and
|
|
|
|
// eating the return values
|
|
|
|
void Show(const nsIntSize& size);
|
2011-07-15 14:46:56 -07:00
|
|
|
void UpdateDimensions(const nsRect& rect, const nsIntSize& size);
|
2012-07-19 23:48:27 -07:00
|
|
|
void UpdateFrame(const layers::FrameMetrics& aFrameMetrics);
|
2014-02-05 14:43:20 -08:00
|
|
|
void AcknowledgeScrollUpdate(const ViewID& aScrollId, const uint32_t& aScrollGeneration);
|
2014-03-12 12:27:45 -07:00
|
|
|
void HandleDoubleTap(const CSSPoint& aPoint,
|
2014-02-07 09:13:50 -08:00
|
|
|
int32_t aModifiers,
|
|
|
|
const ScrollableLayerGuid& aGuid);
|
2014-03-12 12:27:45 -07:00
|
|
|
void HandleSingleTap(const CSSPoint& aPoint,
|
2014-02-07 09:13:50 -08:00
|
|
|
int32_t aModifiers,
|
|
|
|
const ScrollableLayerGuid& aGuid);
|
2014-03-12 12:27:45 -07:00
|
|
|
void HandleLongTap(const CSSPoint& aPoint,
|
2014-02-07 09:13:50 -08:00
|
|
|
int32_t aModifiers,
|
|
|
|
const ScrollableLayerGuid& aGuid);
|
2014-03-12 12:27:45 -07:00
|
|
|
void HandleLongTapUp(const CSSPoint& aPoint,
|
2014-02-07 09:13:50 -08:00
|
|
|
int32_t aModifiers,
|
|
|
|
const ScrollableLayerGuid& aGuid);
|
2014-04-15 10:39:20 -07:00
|
|
|
void NotifyAPZStateChange(ViewID aViewId,
|
|
|
|
APZStateChange aChange,
|
|
|
|
int aArg);
|
2009-11-05 10:14:22 -08:00
|
|
|
void Activate();
|
2011-06-17 17:08:32 -07:00
|
|
|
void Deactivate();
|
2011-09-30 00:00:48 -07:00
|
|
|
|
2013-10-01 20:46:04 -07:00
|
|
|
bool MapEventCoordinatesForChildProcess(mozilla::WidgetEvent* aEvent);
|
2013-08-14 07:15:27 -07:00
|
|
|
void MapEventCoordinatesForChildProcess(const LayoutDeviceIntPoint& aOffset,
|
2013-10-01 20:46:04 -07:00
|
|
|
mozilla::WidgetEvent* aEvent);
|
2013-08-14 07:15:27 -07:00
|
|
|
|
2014-04-21 13:40:09 -07:00
|
|
|
virtual bool RecvRequestNativeKeyBindings(const mozilla::WidgetKeyboardEvent& aEvent,
|
|
|
|
MaybeNativeKeyBinding* aBindings) MOZ_OVERRIDE;
|
|
|
|
|
2009-11-05 10:21:09 -08:00
|
|
|
void SendMouseEvent(const nsAString& aType, float aX, float aY,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aButton, int32_t aClickCount,
|
|
|
|
int32_t aModifiers, bool aIgnoreRootScrollFrame);
|
|
|
|
void SendKeyEvent(const nsAString& aType, int32_t aKeyCode,
|
|
|
|
int32_t aCharCode, int32_t aModifiers,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aPreventDefault);
|
2013-10-01 23:38:27 -07:00
|
|
|
bool SendRealMouseEvent(mozilla::WidgetMouseEvent& event);
|
2013-10-16 02:37:36 -07:00
|
|
|
bool SendMouseWheelEvent(mozilla::WidgetWheelEvent& event);
|
2013-10-01 00:22:58 -07:00
|
|
|
bool SendRealKeyEvent(mozilla::WidgetKeyboardEvent& event);
|
2013-09-26 23:20:57 -07:00
|
|
|
bool SendRealTouchEvent(WidgetTouchEvent& event);
|
2014-03-12 12:27:45 -07:00
|
|
|
bool SendHandleSingleTap(const CSSPoint& aPoint, const ScrollableLayerGuid& aGuid);
|
|
|
|
bool SendHandleLongTap(const CSSPoint& aPoint, const ScrollableLayerGuid& aGuid);
|
|
|
|
bool SendHandleLongTapUp(const CSSPoint& aPoint, const ScrollableLayerGuid& aGuid);
|
|
|
|
bool SendHandleDoubleTap(const CSSPoint& aPoint, const ScrollableLayerGuid& aGuid);
|
2009-10-29 10:58:31 -07:00
|
|
|
|
2010-10-26 15:20:53 -07:00
|
|
|
virtual PDocumentRendererParent*
|
2014-01-17 09:46:41 -08:00
|
|
|
AllocPDocumentRendererParent(const nsRect& documentRect,
|
|
|
|
const gfx::Matrix& transform,
|
2013-07-08 08:48:39 -07:00
|
|
|
const nsString& bgcolor,
|
2014-01-17 09:46:41 -08:00
|
|
|
const uint32_t& renderFlags,
|
|
|
|
const bool& flushLayout,
|
|
|
|
const nsIntSize& renderSize) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPDocumentRendererParent(PDocumentRendererParent* actor) MOZ_OVERRIDE;
|
2010-03-24 03:47:18 -07:00
|
|
|
|
2012-07-30 07:58:26 -07:00
|
|
|
virtual PContentPermissionRequestParent*
|
2014-02-09 12:34:40 -08:00
|
|
|
AllocPContentPermissionRequestParent(const InfallibleTArray<PermissionRequest>& aRequests,
|
2014-01-17 09:46:41 -08:00
|
|
|
const IPC::Principal& aPrincipal) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
|
|
DeallocPContentPermissionRequestParent(PContentPermissionRequestParent* actor) MOZ_OVERRIDE;
|
2010-05-13 10:44:51 -07:00
|
|
|
|
2014-02-17 16:30:06 -08:00
|
|
|
virtual PFilePickerParent*
|
|
|
|
AllocPFilePickerParent(const nsString& aTitle,
|
|
|
|
const int16_t& aMode) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPFilePickerParent(PFilePickerParent* actor) MOZ_OVERRIDE;
|
|
|
|
|
2014-01-15 12:20:33 -08:00
|
|
|
virtual POfflineCacheUpdateParent*
|
|
|
|
AllocPOfflineCacheUpdateParent(const URIParams& aManifestURI,
|
|
|
|
const URIParams& aDocumentURI,
|
|
|
|
const bool& aStickDocument) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
|
|
RecvPOfflineCacheUpdateConstructor(POfflineCacheUpdateParent* aActor,
|
|
|
|
const URIParams& aManifestURI,
|
|
|
|
const URIParams& aDocumentURI,
|
|
|
|
const bool& stickDocument) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
2014-01-17 09:46:41 -08:00
|
|
|
DeallocPOfflineCacheUpdateParent(POfflineCacheUpdateParent* aActor) MOZ_OVERRIDE;
|
2014-01-15 12:20:33 -08:00
|
|
|
|
2014-01-17 09:46:41 -08:00
|
|
|
virtual bool RecvSetOfflinePermission(const IPC::Principal& principal) MOZ_OVERRIDE;
|
2010-10-20 10:12:32 -07:00
|
|
|
|
2013-08-08 15:53:04 -07:00
|
|
|
bool GetGlobalJSObject(JSContext* cx, JSObject** globalp);
|
2009-11-06 12:43:39 -08:00
|
|
|
|
2010-03-26 11:39:39 -07:00
|
|
|
NS_DECL_ISUPPORTS
|
2010-06-24 15:20:42 -07:00
|
|
|
NS_DECL_NSIAUTHPROMPTPROVIDER
|
2010-08-13 01:06:40 -07:00
|
|
|
NS_DECL_NSISECUREBROWSERUI
|
2010-03-26 11:39:39 -07:00
|
|
|
|
2010-09-23 20:28:15 -07:00
|
|
|
static TabParent *GetIMETabParent() { return mIMETabParent; }
|
2013-10-01 00:23:00 -07:00
|
|
|
bool HandleQueryContentEvent(mozilla::WidgetQueryContentEvent& aEvent);
|
2013-10-01 00:23:00 -07:00
|
|
|
bool SendCompositionEvent(mozilla::WidgetCompositionEvent& event);
|
2013-10-01 00:22:59 -07:00
|
|
|
bool SendTextEvent(mozilla::WidgetTextEvent& event);
|
2013-10-01 00:23:01 -07:00
|
|
|
bool SendSelectionEvent(mozilla::WidgetSelectionEvent& event);
|
2012-06-22 18:27:30 -07:00
|
|
|
|
|
|
|
static TabParent* GetFrom(nsFrameLoader* aFrameLoader);
|
|
|
|
static TabParent* GetFrom(nsIContent* aContent);
|
|
|
|
|
2013-07-10 10:07:51 -07:00
|
|
|
ContentParent* Manager() { return mManager; }
|
|
|
|
|
2013-10-16 15:25:50 -07:00
|
|
|
/**
|
|
|
|
* Let managees query if Destroy() is already called so they don't send out
|
|
|
|
* messages when the PBrowser actor is being destroyed.
|
|
|
|
*/
|
|
|
|
bool IsDestroyed() const { return mIsDestroyed; }
|
|
|
|
|
2009-11-05 10:14:22 -08:00
|
|
|
protected:
|
2010-03-29 13:29:45 -07:00
|
|
|
bool ReceiveMessage(const nsString& aMessage,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aSync,
|
2012-08-01 23:02:29 -07:00
|
|
|
const StructuredCloneData* aCloneData,
|
2013-07-10 15:05:39 -07:00
|
|
|
CpowHolder* aCpows,
|
2013-11-06 09:21:15 -08:00
|
|
|
nsIPrincipal* aPrincipal,
|
2012-07-30 07:20:58 -07:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal = nullptr);
|
2010-03-29 13:29:45 -07:00
|
|
|
|
2012-07-17 11:27:27 -07:00
|
|
|
virtual bool Recv__delete__() MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE;
|
2010-04-11 17:34:02 -07:00
|
|
|
|
2013-09-10 21:18:36 -07:00
|
|
|
virtual PIndexedDBParent* AllocPIndexedDBParent(
|
|
|
|
const nsCString& aGroup,
|
|
|
|
const nsCString& aASCIIOrigin,
|
2014-01-17 09:46:41 -08:00
|
|
|
bool* /* aAllowed */) MOZ_OVERRIDE;
|
2012-06-01 10:21:12 -07:00
|
|
|
|
2014-01-17 09:46:41 -08:00
|
|
|
virtual bool DeallocPIndexedDBParent(PIndexedDBParent* aActor) MOZ_OVERRIDE;
|
2012-06-01 10:21:12 -07:00
|
|
|
|
|
|
|
virtual bool
|
|
|
|
RecvPIndexedDBConstructor(PIndexedDBParent* aActor,
|
2013-09-10 21:18:36 -07:00
|
|
|
const nsCString& aGroup,
|
2012-06-01 10:21:12 -07:00
|
|
|
const nsCString& aASCIIOrigin,
|
2014-01-17 09:46:41 -08:00
|
|
|
bool* aAllowed) MOZ_OVERRIDE;
|
2012-06-01 10:21:12 -07:00
|
|
|
|
2013-07-23 16:39:17 -07:00
|
|
|
Element* mFrameElement;
|
2009-12-31 17:35:55 -08:00
|
|
|
nsCOMPtr<nsIBrowserDOMWindow> mBrowserDOMWindow;
|
2010-03-26 11:39:39 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool AllowContentIME();
|
2013-11-21 18:58:20 -08:00
|
|
|
nsIntPoint GetChildProcessOffset();
|
2010-08-05 15:11:23 -07:00
|
|
|
|
2014-01-15 13:10:39 -08:00
|
|
|
virtual PRenderFrameParent* AllocPRenderFrameParent() MOZ_OVERRIDE;
|
2013-07-08 08:48:39 -07:00
|
|
|
virtual bool DeallocPRenderFrameParent(PRenderFrameParent* aFrame) MOZ_OVERRIDE;
|
2010-08-20 16:24:41 -07:00
|
|
|
|
2010-09-23 20:28:15 -07:00
|
|
|
// IME
|
2010-09-23 20:28:15 -07:00
|
|
|
static TabParent *mIMETabParent;
|
2010-09-23 20:28:15 -07:00
|
|
|
nsString mIMECacheText;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mIMESelectionAnchor;
|
|
|
|
uint32_t mIMESelectionFocus;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIMEComposing;
|
|
|
|
bool mIMECompositionEnding;
|
2010-09-23 20:28:15 -07:00
|
|
|
// Buffer to store composition text during ResetInputState
|
|
|
|
// Compositions in almost all cases are small enough for nsAutoString
|
|
|
|
nsAutoString mIMECompositionText;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mIMECompositionStart;
|
|
|
|
uint32_t mIMESeqno;
|
2010-09-23 20:28:15 -07:00
|
|
|
|
2013-11-21 18:58:20 -08:00
|
|
|
uint32_t mIMECompositionRectOffset;
|
|
|
|
nsIntRect mIMECompositionRect;
|
2014-01-16 02:04:39 -08:00
|
|
|
nsIntRect mIMECaretRect;
|
2013-11-21 18:58:20 -08:00
|
|
|
|
2012-09-11 13:05:52 -07:00
|
|
|
// The number of event series we're currently capturing.
|
|
|
|
int32_t mEventCaptureDepth;
|
|
|
|
|
2013-01-28 23:49:38 -08:00
|
|
|
nsRect mRect;
|
2012-09-28 19:16:36 -07:00
|
|
|
nsIntSize mDimensions;
|
2013-01-28 23:49:38 -08:00
|
|
|
ScreenOrientation mOrientation;
|
2010-12-09 10:57:05 -08:00
|
|
|
float mDPI;
|
2013-09-17 17:45:19 -07:00
|
|
|
CSSToLayoutDeviceScale mDefaultScale;
|
2012-04-25 09:35:58 -07:00
|
|
|
bool mShown;
|
2013-01-28 23:49:38 -08:00
|
|
|
bool mUpdatedDimensions;
|
2010-12-09 10:57:05 -08:00
|
|
|
|
2010-08-05 15:11:23 -07:00
|
|
|
private:
|
|
|
|
already_AddRefed<nsFrameLoader> GetFrameLoader() const;
|
2010-09-23 20:28:15 -07:00
|
|
|
already_AddRefed<nsIWidget> GetWidget() const;
|
2012-07-19 23:48:27 -07:00
|
|
|
layout::RenderFrameParent* GetRenderFrame();
|
2013-07-10 10:07:51 -07:00
|
|
|
nsRefPtr<ContentParent> mManager;
|
2013-05-01 16:06:19 -07:00
|
|
|
void TryCacheDPIAndScale();
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 10:32:37 -08:00
|
|
|
|
2014-03-12 12:27:45 -07:00
|
|
|
CSSPoint AdjustTapToChildWidget(const CSSPoint& aPoint);
|
2013-12-05 15:17:37 -08:00
|
|
|
|
2012-07-19 23:48:27 -07:00
|
|
|
// When true, we create a pan/zoom controller for our frame and
|
|
|
|
// notify it of input events targeting us.
|
|
|
|
bool UseAsyncPanZoom();
|
|
|
|
// If we have a render frame currently, notify it that we're about
|
|
|
|
// to dispatch |aEvent| to our child. If there's a relevant
|
2014-03-10 14:59:46 -07:00
|
|
|
// transform in place, |aEvent| will be transformed in-place so that
|
|
|
|
// it is ready to be dispatched to content.
|
|
|
|
// |aOutTargetGuid| will contain the identifier
|
2013-11-13 10:20:31 -08:00
|
|
|
// of the APZC instance that handled the event. aOutTargetGuid may be
|
2014-03-10 14:59:46 -07:00
|
|
|
// null.
|
|
|
|
void MaybeForwardEventToRenderFrame(WidgetInputEvent& aEvent,
|
|
|
|
ScrollableLayerGuid* aOutTargetGuid);
|
2013-05-15 22:58:07 -07:00
|
|
|
// The offset for the child process which is sampled at touch start. This
|
|
|
|
// means that the touch events are relative to where the frame was at the
|
|
|
|
// start of the touch. We need to look for a better solution to this
|
|
|
|
// problem see bug 872911.
|
2013-07-11 07:43:35 -07:00
|
|
|
LayoutDeviceIntPoint mChildProcessOffsetAtTouchStart;
|
2013-01-10 05:22:14 -08:00
|
|
|
// When true, we've initiated normal shutdown and notified our
|
|
|
|
// managing PContent.
|
|
|
|
bool mMarkedDestroying;
|
2012-11-09 22:09:24 -08:00
|
|
|
// When true, the TabParent is invalid and we should not send IPC messages
|
|
|
|
// anymore.
|
|
|
|
bool mIsDestroyed;
|
2013-02-15 14:27:21 -08:00
|
|
|
// Whether we have already sent a FileDescriptor for the app package.
|
|
|
|
bool mAppPackageFileDescriptorSent;
|
2014-01-10 17:10:57 -08:00
|
|
|
|
|
|
|
uint32_t mChromeFlags;
|
|
|
|
|
|
|
|
nsCOMPtr<nsILoadContext> mLoadContext;
|
2009-06-30 13:39:22 -07:00
|
|
|
};
|
|
|
|
|
2009-08-12 09:18:08 -07:00
|
|
|
} // namespace dom
|
2009-06-30 13:39:22 -07:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|