2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2005-02-07 23:53:47 +00:00
|
|
|
|
2006-03-30 08:03:04 +00:00
|
|
|
/*
|
|
|
|
* Class for managing loading of a subframe (creation of the docshell,
|
|
|
|
* handling of loads in it, recursion-checking).
|
|
|
|
*/
|
|
|
|
|
2005-02-07 23:53:47 +00:00
|
|
|
#ifndef nsFrameLoader_h_
|
|
|
|
#define nsFrameLoader_h_
|
|
|
|
|
|
|
|
#include "nsIDocShell.h"
|
|
|
|
#include "nsStringFwd.h"
|
2005-02-08 06:55:00 +00:00
|
|
|
#include "nsIFrameLoader.h"
|
2010-09-03 20:10:46 +00:00
|
|
|
#include "nsPoint.h"
|
2009-10-05 11:52:19 +00:00
|
|
|
#include "nsSize.h"
|
2008-03-21 11:44:09 +00:00
|
|
|
#include "nsIURI.h"
|
2010-02-20 17:05:20 +00:00
|
|
|
#include "nsFrameMessageManager.h"
|
2011-10-01 17:14:35 +00:00
|
|
|
#include "mozilla/dom/Element.h"
|
2012-06-19 02:30:09 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-09-05 03:00:26 +00:00
|
|
|
#include "nsStubMutationObserver.h"
|
2015-03-05 09:13:05 +00:00
|
|
|
#include "Units.h"
|
2015-08-05 21:25:39 +00:00
|
|
|
#include "nsIWebBrowserPersistable.h"
|
2016-05-04 21:12:48 +00:00
|
|
|
#include "nsIFrame.h"
|
2005-02-07 23:53:47 +00:00
|
|
|
|
2005-03-08 00:02:55 +00:00
|
|
|
class nsIURI;
|
2010-08-31 00:49:07 +00:00
|
|
|
class nsSubDocumentFrame;
|
2013-01-03 13:23:11 +00:00
|
|
|
class nsView;
|
2010-05-18 12:28:37 +00:00
|
|
|
class nsIInProcessContentFrameMessageManager;
|
2010-05-28 19:34:50 +00:00
|
|
|
class AutoResetInShow;
|
2015-08-07 14:17:50 +00:00
|
|
|
class AutoResetInFrameSwap;
|
2012-06-12 22:01:25 +00:00
|
|
|
class nsITabParent;
|
2012-09-05 03:00:26 +00:00
|
|
|
class nsIDocShellTreeItem;
|
|
|
|
class nsIDocShellTreeOwner;
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 18:32:37 +00:00
|
|
|
class mozIApplication;
|
2009-07-20 19:04:52 +00:00
|
|
|
|
2009-06-30 20:39:22 +00:00
|
|
|
namespace mozilla {
|
2016-05-29 23:48:00 +00:00
|
|
|
|
|
|
|
class DocShellOriginAttributes;
|
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
namespace dom {
|
2013-07-17 23:34:57 +00:00
|
|
|
class ContentParent;
|
2010-07-19 18:33:33 +00:00
|
|
|
class PBrowserParent;
|
|
|
|
class TabParent;
|
2015-10-08 06:44:36 +00:00
|
|
|
class MutableTabContext;
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace dom
|
2010-08-20 23:24:41 +00:00
|
|
|
|
2015-09-10 20:50:58 +00:00
|
|
|
namespace ipc {
|
|
|
|
class StructuredCloneData;
|
|
|
|
} // namespace ipc
|
|
|
|
|
2010-08-20 23:24:41 +00:00
|
|
|
namespace layout {
|
|
|
|
class RenderFrameParent;
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace layout
|
|
|
|
} // namespace mozilla
|
2009-10-28 20:41:46 +00:00
|
|
|
|
2013-06-12 12:04:28 +00:00
|
|
|
#if defined(MOZ_WIDGET_GTK)
|
2009-10-28 20:41:46 +00:00
|
|
|
typedef struct _GtkWidget GtkWidget;
|
|
|
|
#endif
|
2005-02-07 23:53:47 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class nsFrameLoader final : public nsIFrameLoader,
|
2015-08-05 21:25:39 +00:00
|
|
|
public nsIWebBrowserPersistable,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsStubMutationObserver,
|
|
|
|
public mozilla::dom::ipc::MessageManagerCallback
|
2011-01-13 17:45:14 +00:00
|
|
|
{
|
|
|
|
friend class AutoResetInShow;
|
2015-08-07 14:17:50 +00:00
|
|
|
friend class AutoResetInFrameSwap;
|
2011-01-13 17:45:14 +00:00
|
|
|
typedef mozilla::dom::PBrowserParent PBrowserParent;
|
|
|
|
typedef mozilla::dom::TabParent TabParent;
|
|
|
|
typedef mozilla::layout::RenderFrameParent RenderFrameParent;
|
|
|
|
|
2014-06-25 02:09:15 +00:00
|
|
|
public:
|
2011-10-01 17:14:35 +00:00
|
|
|
static nsFrameLoader* Create(mozilla::dom::Element* aOwner,
|
|
|
|
bool aNetworkCreated);
|
2009-08-19 09:09:26 +00:00
|
|
|
|
2007-03-08 11:17:16 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2011-01-11 21:34:31 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsFrameLoader, nsIFrameLoader)
|
2005-02-08 06:55:00 +00:00
|
|
|
NS_DECL_NSIFRAMELOADER
|
2012-09-05 03:00:26 +00:00
|
|
|
NS_DECL_NSIMUTATIONOBSERVER_ATTRIBUTECHANGED
|
2015-08-05 21:25:39 +00:00
|
|
|
NS_DECL_NSIWEBBROWSERPERSISTABLE
|
2014-06-02 12:08:21 +00:00
|
|
|
nsresult CheckForRecursiveLoad(nsIURI* aURI);
|
2008-03-21 11:44:09 +00:00
|
|
|
nsresult ReallyStartLoading();
|
2015-02-27 05:35:26 +00:00
|
|
|
void StartDestroy();
|
|
|
|
void DestroyDocShell();
|
|
|
|
void DestroyComplete();
|
2008-04-24 10:33:22 +00:00
|
|
|
nsIDocShell* GetExistingDocShell() { return mDocShell; }
|
2013-04-06 00:44:26 +00:00
|
|
|
mozilla::dom::EventTarget* GetTabChildGlobalAsEventTarget();
|
2009-12-11 04:02:13 +00:00
|
|
|
nsresult CreateStaticClone(nsIFrameLoader* aDest);
|
|
|
|
|
2012-09-28 05:43:12 +00:00
|
|
|
/**
|
|
|
|
* MessageManagerCallback methods that we override.
|
|
|
|
*/
|
2015-02-20 01:11:32 +00:00
|
|
|
virtual bool DoLoadMessageManagerScript(const nsAString& aURL,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool aRunInGlobalScope) override;
|
2015-10-07 10:42:43 +00:00
|
|
|
virtual nsresult DoSendAsyncMessage(JSContext* aCx,
|
|
|
|
const nsAString& aMessage,
|
|
|
|
mozilla::dom::ipc::StructuredCloneData& aData,
|
|
|
|
JS::Handle<JSObject *> aCpows,
|
|
|
|
nsIPrincipal* aPrincipal) override;
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool CheckPermission(const nsAString& aPermission) override;
|
|
|
|
virtual bool CheckManifestURL(const nsAString& aManifestURL) override;
|
|
|
|
virtual bool CheckAppHasPermission(const nsAString& aPermission) override;
|
2012-09-28 05:43:12 +00:00
|
|
|
|
2009-10-16 19:42:29 +00:00
|
|
|
/**
|
2009-10-16 19:42:29 +00:00
|
|
|
* Called from the layout frame associated with this frame loader;
|
|
|
|
* this notifies us to hook up with the widget and view.
|
2009-10-16 19:42:29 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
bool Show(int32_t marginWidth, int32_t marginHeight,
|
|
|
|
int32_t scrollbarPrefX, int32_t scrollbarPrefY,
|
2010-08-31 00:49:07 +00:00
|
|
|
nsSubDocumentFrame* frame);
|
2009-10-16 19:42:29 +00:00
|
|
|
|
2011-05-13 17:41:00 +00:00
|
|
|
/**
|
|
|
|
* Called when the margin properties of the containing frame are changed.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
void MarginsChanged(uint32_t aMarginWidth, uint32_t aMarginHeight);
|
2011-05-13 17:41:00 +00:00
|
|
|
|
2009-10-16 19:42:29 +00:00
|
|
|
/**
|
2009-10-16 19:42:29 +00:00
|
|
|
* Called from the layout frame associated with this frame loader, when
|
|
|
|
* the frame is being torn down; this notifies us that out widget and view
|
|
|
|
* are going away and we should unhook from them.
|
2009-10-16 19:42:29 +00:00
|
|
|
*/
|
|
|
|
void Hide();
|
|
|
|
|
2009-12-11 04:02:13 +00:00
|
|
|
nsresult CloneForStatic(nsIFrameLoader* aOriginal);
|
|
|
|
|
2008-08-07 23:15:40 +00:00
|
|
|
// The guts of an nsIFrameLoaderOwner::SwapFrameLoader implementation. A
|
|
|
|
// frame loader owner needs to call this, and pass in the two references to
|
|
|
|
// nsRefPtrs for frame loaders that need to be swapped.
|
|
|
|
nsresult SwapWithOtherLoader(nsFrameLoader* aOther,
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsFrameLoader>& aFirstToSwap,
|
|
|
|
RefPtr<nsFrameLoader>& aSecondToSwap);
|
2009-10-29 17:58:31 +00:00
|
|
|
|
2014-10-07 02:30:42 +00:00
|
|
|
nsresult SwapWithOtherRemoteLoader(nsFrameLoader* aOther,
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsFrameLoader>& aFirstToSwap,
|
|
|
|
RefPtr<nsFrameLoader>& aSecondToSwap);
|
2014-10-07 02:30:42 +00:00
|
|
|
|
2010-08-05 22:11:23 +00:00
|
|
|
/**
|
|
|
|
* Return the primary frame for our owning content, or null if it
|
|
|
|
* can't be found.
|
|
|
|
*/
|
|
|
|
nsIFrame* GetPrimaryFrameOfOwningContent() const
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
return mOwnerContent ? mOwnerContent->GetPrimaryFrame() : nullptr;
|
2010-08-05 22:11:23 +00:00
|
|
|
}
|
|
|
|
|
2016-02-18 03:31:29 +00:00
|
|
|
/**
|
2010-08-05 22:11:23 +00:00
|
|
|
* Return the document that owns this, or null if we don't have
|
|
|
|
* an owner.
|
|
|
|
*/
|
2012-05-11 07:47:40 +00:00
|
|
|
nsIDocument* GetOwnerDoc() const
|
2012-07-30 14:20:58 +00:00
|
|
|
{ return mOwnerContent ? mOwnerContent->OwnerDoc() : nullptr; }
|
2010-08-05 22:11:23 +00:00
|
|
|
|
2015-06-09 10:20:41 +00:00
|
|
|
PBrowserParent* GetRemoteBrowser() const;
|
2010-08-20 23:24:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The "current" render frame is the one on which the most recent
|
|
|
|
* remote layer-tree transaction was executed. If no content has
|
|
|
|
* been drawn yet, or the remote browser doesn't have any drawn
|
2013-04-03 01:14:24 +00:00
|
|
|
* content for whatever reason, return nullptr. The returned render
|
2010-08-20 23:24:41 +00:00
|
|
|
* frame has an associated shadow layer tree.
|
|
|
|
*
|
|
|
|
* Note that the returned render frame might not be a frame
|
|
|
|
* constructed for this->GetURL(). This can happen, e.g., if the
|
|
|
|
* <browser> was just navigated to a new URL, but hasn't painted the
|
|
|
|
* new page yet. A render frame for the previous page may be
|
|
|
|
* returned. (In-process <browser> behaves similarly, and this
|
|
|
|
* behavior seems desirable.)
|
|
|
|
*/
|
2015-06-09 10:30:08 +00:00
|
|
|
RenderFrameParent* GetCurrentRenderFrame() const;
|
2010-08-20 23:24:41 +00:00
|
|
|
|
2010-02-20 17:05:20 +00:00
|
|
|
nsFrameMessageManager* GetFrameMessageManager() { return mMessageManager; }
|
|
|
|
|
2011-10-01 17:14:35 +00:00
|
|
|
mozilla::dom::Element* GetOwnerContent() { return mOwnerContent; }
|
2011-12-05 12:38:46 +00:00
|
|
|
bool ShouldClipSubdocument() { return mClipSubdocument; }
|
|
|
|
|
2012-02-17 23:41:13 +00:00
|
|
|
bool ShouldClampScrollPosition() { return mClampScrollPosition; }
|
|
|
|
|
2012-06-12 22:01:25 +00:00
|
|
|
/**
|
|
|
|
* Tell this FrameLoader to use a particular remote browser.
|
|
|
|
*
|
2015-06-09 10:20:41 +00:00
|
|
|
* This will assert if mRemoteBrowser is non-null. In practice,
|
|
|
|
* this means you can't have successfully run TryRemoteBrowser() on
|
|
|
|
* this object, which means you can't have called ShowRemoteFrame()
|
|
|
|
* or ReallyStartLoading().
|
2012-06-12 22:01:25 +00:00
|
|
|
*/
|
|
|
|
void SetRemoteBrowser(nsITabParent* aTabParent);
|
|
|
|
|
2015-08-31 10:21:40 +00:00
|
|
|
nsresult SwapRemoteBrowser(nsITabParent* aTabParent);
|
|
|
|
|
2012-08-14 04:06:44 +00:00
|
|
|
/**
|
2016-05-04 21:12:48 +00:00
|
|
|
* Stashes a detached nsIFrame on the frame loader. We do this when we're
|
2012-08-14 04:06:44 +00:00
|
|
|
* destroying the nsSubDocumentFrame. If the nsSubdocumentFrame is
|
2016-05-04 21:12:48 +00:00
|
|
|
* being reframed we'll restore the detached nsIFrame when it's recreated,
|
2012-08-14 04:06:44 +00:00
|
|
|
* otherwise we'll discard the old presentation and set the detached
|
2016-05-04 21:12:48 +00:00
|
|
|
* subdoc nsIFrame to null. aContainerDoc is the document containing the
|
2012-08-14 04:06:44 +00:00
|
|
|
* the subdoc frame. This enables us to detect when the containing
|
2016-02-18 03:31:29 +00:00
|
|
|
* document has changed during reframe, so we can discard the presentation
|
2012-08-14 04:06:44 +00:00
|
|
|
* in that case.
|
|
|
|
*/
|
2016-05-04 21:12:48 +00:00
|
|
|
void SetDetachedSubdocFrame(nsIFrame* aDetachedFrame,
|
|
|
|
nsIDocument* aContainerDoc);
|
2012-08-14 04:06:44 +00:00
|
|
|
|
|
|
|
/**
|
2016-05-04 21:12:48 +00:00
|
|
|
* Retrieves the detached nsIFrame and the document containing the nsIFrame,
|
|
|
|
* as set by SetDetachedSubdocFrame().
|
2012-08-14 04:06:44 +00:00
|
|
|
*/
|
2016-05-04 21:12:48 +00:00
|
|
|
nsIFrame* GetDetachedSubdocFrame(nsIDocument** aContainerDoc) const;
|
2012-08-14 04:06:44 +00:00
|
|
|
|
2013-08-06 10:01:23 +00:00
|
|
|
/**
|
|
|
|
* Applies a new set of sandbox flags. These are merged with the sandbox
|
|
|
|
* flags from our owning content's owning document with a logical OR, this
|
|
|
|
* ensures that we can only add restrictions and never remove them.
|
|
|
|
*/
|
|
|
|
void ApplySandboxFlags(uint32_t sandboxFlags);
|
|
|
|
|
2013-10-26 00:04:50 +00:00
|
|
|
void GetURL(nsString& aURL);
|
|
|
|
|
2015-01-09 08:55:18 +00:00
|
|
|
void ActivateUpdateHitRegion();
|
|
|
|
void DeactivateUpdateHitRegion();
|
|
|
|
|
2015-03-31 20:39:02 +00:00
|
|
|
// Properly retrieves documentSize of any subdocument type.
|
|
|
|
nsresult GetWindowDimensions(nsIntRect& aRect);
|
|
|
|
|
2015-06-09 10:49:17 +00:00
|
|
|
// public because a callback needs these.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsFrameMessageManager> mMessageManager;
|
2015-06-09 10:49:17 +00:00
|
|
|
nsCOMPtr<nsIInProcessContentFrameMessageManager> mChildMessageManager;
|
|
|
|
|
2005-02-08 06:55:00 +00:00
|
|
|
private:
|
2015-06-09 10:49:17 +00:00
|
|
|
nsFrameLoader(mozilla::dom::Element* aOwner, bool aNetworkCreated);
|
|
|
|
~nsFrameLoader();
|
2005-02-07 23:53:47 +00:00
|
|
|
|
2012-05-08 16:20:35 +00:00
|
|
|
void SetOwnerContent(mozilla::dom::Element* aContent);
|
|
|
|
|
2009-10-16 19:42:27 +00:00
|
|
|
bool ShouldUseRemoteProcess();
|
|
|
|
|
2015-07-31 09:28:36 +00:00
|
|
|
/**
|
|
|
|
* Return true if the frame is a remote frame. Return false otherwise
|
|
|
|
*/
|
|
|
|
bool IsRemoteFrame();
|
|
|
|
|
2012-04-25 16:35:58 +00:00
|
|
|
/**
|
2012-07-13 21:10:20 +00:00
|
|
|
* Is this a frameloader for a bona fide <iframe mozbrowser> or
|
|
|
|
* <iframe mozapp>? (I.e., does the frame return true for
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 18:32:37 +00:00
|
|
|
* nsIMozBrowserFrame::GetReallyIsBrowserOrApp()?)
|
2016-02-18 03:31:29 +00:00
|
|
|
* <xul:browser> is not a mozbrowser or app, so this is false for that case.
|
2012-04-25 16:35:58 +00:00
|
|
|
*/
|
2016-02-18 03:31:29 +00:00
|
|
|
bool OwnerIsMozBrowserOrAppFrame();
|
2012-04-25 16:35:58 +00:00
|
|
|
|
2014-08-19 14:14:22 +00:00
|
|
|
/**
|
|
|
|
* Is this a frameloader for a bona fide <iframe mozwidget>? (I.e., does the
|
|
|
|
* frame return true for nsIMozBrowserFrame::GetReallyIsWidget()?)
|
|
|
|
*/
|
|
|
|
bool OwnerIsWidget();
|
|
|
|
|
2012-07-13 21:10:20 +00:00
|
|
|
/**
|
|
|
|
* Is this a frameloader for a bona fide <iframe mozapp>? (I.e., does the
|
|
|
|
* frame return true for nsIMozBrowserFrame::GetReallyIsApp()?)
|
|
|
|
*/
|
|
|
|
bool OwnerIsAppFrame();
|
|
|
|
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 18:32:37 +00:00
|
|
|
/**
|
|
|
|
* Is this a frame loader for a bona fide <iframe mozbrowser>?
|
2016-02-18 03:31:29 +00:00
|
|
|
* <xul:browser> is not a mozbrowser, so this is false for that case.
|
|
|
|
*/
|
|
|
|
bool OwnerIsMozBrowserFrame();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is this a frame loader for an isolated <iframe mozbrowser>?
|
|
|
|
*
|
|
|
|
* By default, mozbrowser frames are isolated. Isolation can be disabled by
|
|
|
|
* setting the frame's noisolation attribute. Disabling isolation is
|
|
|
|
* only allowed if the containing document is chrome.
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 18:32:37 +00:00
|
|
|
*/
|
2016-02-18 03:31:29 +00:00
|
|
|
bool OwnerIsIsolatedMozBrowserFrame();
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 18:32:37 +00:00
|
|
|
|
2013-02-06 23:49:27 +00:00
|
|
|
/**
|
|
|
|
* Get our owning element's app manifest URL, or return the empty string if
|
|
|
|
* our owning element doesn't have an app manifest URL.
|
|
|
|
*/
|
|
|
|
void GetOwnerAppManifestURL(nsAString& aOut);
|
|
|
|
|
Bug 802366 - The main event: Let a browser process inherit its app's id. r=bz,cjones
The main bug fixed here is that in half of our interfaces, we use "is browser frame/element" to mean "browser or app", and in the other half, we use it to mean "is browser not app".
There's a related, functional bug also fixed here, which is that a browser process doesn't inherit its parent's app-id. This causes problems e.g. for IndexedDB: If a browser inside an app uses IndexedDB, the DB should have the app's app-id.
I also modified Tab{Parent,Child} and nsFrameLoader to call "app" "ownOrContainingApp", to emphasize that we might have inherited the app from a parent process. I left nsIDocShell::appId alone, because changing that would have necessitated changing nsILoadGroup and therefore a /lot/ of users in Necko; it's also not clear it would have clarified anything in those cases.
2012-11-10 18:32:37 +00:00
|
|
|
/**
|
|
|
|
* Get the app for our frame. This is the app whose manifest is returned by
|
|
|
|
* GetOwnerAppManifestURL.
|
|
|
|
*/
|
|
|
|
already_AddRefed<mozIApplication> GetOwnApp();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the app which contains this frame. This is the app associated with
|
|
|
|
* the frame element's principal.
|
|
|
|
*/
|
|
|
|
already_AddRefed<mozIApplication> GetContainingApp();
|
|
|
|
|
2009-10-16 19:42:27 +00:00
|
|
|
/**
|
|
|
|
* If we are an IPC frame, set mRemoteFrame. Otherwise, create and
|
|
|
|
* initialize mDocShell.
|
|
|
|
*/
|
|
|
|
nsresult MaybeCreateDocShell();
|
2010-05-18 12:28:37 +00:00
|
|
|
nsresult EnsureMessageManager();
|
2015-07-30 03:07:14 +00:00
|
|
|
nsresult ReallyLoadFrameScripts();
|
2009-10-05 11:52:19 +00:00
|
|
|
|
|
|
|
// Updates the subdocument position and size. This gets called only
|
|
|
|
// when we have our own in-process DocShell.
|
2015-01-14 19:04:00 +00:00
|
|
|
void UpdateBaseWindowPositionAndSize(nsSubDocumentFrame *aIFrame);
|
2008-03-21 11:44:09 +00:00
|
|
|
nsresult CheckURILoad(nsIURI* aURI);
|
2010-02-25 02:45:43 +00:00
|
|
|
void FireErrorEvent();
|
|
|
|
nsresult ReallyStartLoadingInternal();
|
2005-02-07 23:53:47 +00:00
|
|
|
|
2010-08-20 23:24:40 +00:00
|
|
|
// Return true if remote browser created; nothing else to do
|
|
|
|
bool TryRemoteBrowser();
|
2009-10-28 20:41:46 +00:00
|
|
|
|
2010-08-20 23:24:40 +00:00
|
|
|
// Tell the remote browser that it's now "virtually visible"
|
2015-03-05 09:13:05 +00:00
|
|
|
bool ShowRemoteFrame(const mozilla::ScreenIntSize& size,
|
2013-01-10 07:23:55 +00:00
|
|
|
nsSubDocumentFrame *aFrame = nullptr);
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2012-09-05 03:00:26 +00:00
|
|
|
bool AddTreeItemToTreeOwner(nsIDocShellTreeItem* aItem,
|
|
|
|
nsIDocShellTreeOwner* aOwner,
|
|
|
|
int32_t aParentType,
|
2014-01-06 22:34:15 +00:00
|
|
|
nsIDocShell* aParentNode);
|
2012-09-05 03:00:26 +00:00
|
|
|
|
|
|
|
nsIAtom* TypeAttrName() const {
|
2015-03-03 11:08:59 +00:00
|
|
|
return mOwnerContent->IsXULElement()
|
|
|
|
? nsGkAtoms::type : nsGkAtoms::mozframetype;
|
2012-09-05 03:00:26 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 22:02:29 +00:00
|
|
|
// Update the permission manager's app-id refcount based on mOwnerContent's
|
|
|
|
// own-or-containing-app.
|
|
|
|
void ResetPermissionManagerStatus();
|
|
|
|
|
2015-02-09 07:04:18 +00:00
|
|
|
void InitializeBrowserAPI();
|
|
|
|
|
2015-10-22 03:44:00 +00:00
|
|
|
nsresult GetNewTabContext(mozilla::dom::MutableTabContext* aTabContext,
|
2015-11-03 01:50:54 +00:00
|
|
|
nsIURI* aURI = nullptr,
|
2015-10-22 03:44:00 +00:00
|
|
|
const nsACString& aPackageId = EmptyCString());
|
2015-10-08 06:44:36 +00:00
|
|
|
|
2015-10-01 17:06:51 +00:00
|
|
|
enum TabParentChange {
|
|
|
|
eTabParentRemoved,
|
|
|
|
eTabParentChanged
|
|
|
|
};
|
|
|
|
void MaybeUpdatePrimaryTabParent(TabParentChange aChange);
|
|
|
|
|
2016-05-29 23:48:00 +00:00
|
|
|
nsresult
|
|
|
|
PopulateUserContextIdFromAttribute(mozilla::DocShellOriginAttributes& aAttr);
|
|
|
|
|
2005-02-07 23:53:47 +00:00
|
|
|
nsCOMPtr<nsIDocShell> mDocShell;
|
2008-03-21 11:44:09 +00:00
|
|
|
nsCOMPtr<nsIURI> mURIToLoad;
|
2011-10-01 17:14:35 +00:00
|
|
|
mozilla::dom::Element* mOwnerContent; // WEAK
|
2012-09-05 03:00:26 +00:00
|
|
|
|
2015-02-27 05:35:26 +00:00
|
|
|
// After the frameloader has been removed from the DOM but before all of the
|
|
|
|
// messages from the frame have been received, we keep a strong reference to
|
|
|
|
// our <browser> element.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<mozilla::dom::Element> mOwnerContentStrong;
|
2015-02-27 05:35:26 +00:00
|
|
|
|
2013-01-05 22:02:29 +00:00
|
|
|
// Note: this variable must be modified only by ResetPermissionManagerStatus()
|
|
|
|
uint32_t mAppIdSentToPermissionManager;
|
|
|
|
|
2016-05-04 21:12:48 +00:00
|
|
|
// Stores the root frame of the subdocument while the subdocument is being
|
2012-08-14 04:06:44 +00:00
|
|
|
// reframed. Used to restore the presentation after reframing.
|
2016-05-04 21:12:48 +00:00
|
|
|
nsWeakFrame mDetachedSubdocFrame;
|
2012-08-14 04:06:44 +00:00
|
|
|
// Stores the containing document of the frame corresponding to this
|
|
|
|
// frame loader. This is reference is kept valid while the subframe's
|
2016-05-04 21:12:48 +00:00
|
|
|
// presentation is detached and stored in mDetachedSubdocFrame. This
|
2012-08-14 04:06:44 +00:00
|
|
|
// enables us to detect whether the frame has moved documents during
|
|
|
|
// a reframe, so that we know not to restore the presentation.
|
|
|
|
nsCOMPtr<nsIDocument> mContainerDocWhileDetached;
|
|
|
|
|
2015-06-09 10:49:17 +00:00
|
|
|
TabParent* mRemoteBrowser;
|
|
|
|
uint64_t mChildID;
|
|
|
|
|
|
|
|
// See nsIFrameLoader.idl. EVENT_MODE_NORMAL_DISPATCH automatically
|
|
|
|
// forwards some input events to out-of-process content.
|
|
|
|
uint32_t mEventMode;
|
|
|
|
|
2016-04-08 00:04:57 +00:00
|
|
|
// Holds the last known size of the frame.
|
|
|
|
mozilla::ScreenIntSize mLazySize;
|
|
|
|
|
2015-01-05 19:16:09 +00:00
|
|
|
bool mIsPrerendered : 1;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mDepthTooGreat : 1;
|
|
|
|
bool mIsTopLevelContent : 1;
|
|
|
|
bool mDestroyCalled : 1;
|
|
|
|
bool mNeedsAsyncDestroy : 1;
|
|
|
|
bool mInSwap : 1;
|
|
|
|
bool mInShow : 1;
|
|
|
|
bool mHideCalled : 1;
|
2010-08-17 14:13:55 +00:00
|
|
|
// True when the object is created for an element which the parser has
|
|
|
|
// created using NS_FROM_PARSER_NETWORK flag. If the element is modified,
|
|
|
|
// it may lose the flag.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mNetworkCreated : 1;
|
2009-06-30 20:39:22 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mRemoteBrowserShown : 1;
|
2011-12-05 12:38:46 +00:00
|
|
|
bool mRemoteFrame : 1;
|
|
|
|
bool mClipSubdocument : 1;
|
2012-02-17 23:41:13 +00:00
|
|
|
bool mClampScrollPosition : 1;
|
2012-09-05 03:00:26 +00:00
|
|
|
bool mObservingOwnerContent : 1;
|
2011-12-05 12:38:46 +00:00
|
|
|
|
2013-04-26 00:53:26 +00:00
|
|
|
// Backs nsIFrameLoader::{Get,Set}Visible. Visibility state here relates to
|
|
|
|
// whether this frameloader's <iframe mozbrowser> is setVisible(true)'ed, and
|
|
|
|
// doesn't necessarily correlate with docshell/document visibility.
|
|
|
|
bool mVisible : 1;
|
2005-02-07 23:53:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|