2012-03-04 16:02:00 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set tw=80 expandtab softtabstop=2 ts=2 sw=2: */
|
|
|
|
|
|
|
|
/* 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/. */
|
|
|
|
|
2013-02-06 22:32:20 +00:00
|
|
|
#include "mozIApplication.idl"
|
2012-03-04 16:02:00 +00:00
|
|
|
#include "nsIDOMMozBrowserFrame.idl"
|
|
|
|
|
2013-02-06 22:32:20 +00:00
|
|
|
interface mozIMozApplication;
|
2012-06-12 22:01:25 +00:00
|
|
|
interface nsITabParent;
|
|
|
|
|
2013-02-06 22:32:20 +00:00
|
|
|
[scriptable, builtinclass, uuid(a2373fa5-a090-4192-ab28-6df793a631c1)]
|
2012-03-04 16:02:00 +00:00
|
|
|
interface nsIMozBrowserFrame : nsIDOMMozBrowserFrame
|
|
|
|
{
|
|
|
|
/**
|
2012-07-13 21:10:20 +00:00
|
|
|
* Gets whether this frame really is a browser or app frame.
|
2012-03-04 16:02:00 +00:00
|
|
|
*
|
|
|
|
* In order to really be a browser frame, this frame's
|
|
|
|
* nsIDOMMozBrowserFrame::mozbrowser attribute must be true, and the frame
|
|
|
|
* may have to pass various security checks.
|
|
|
|
*/
|
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
|
|
|
[infallible] readonly attribute boolean reallyIsBrowserOrApp;
|
2012-06-12 22:01:25 +00:00
|
|
|
|
2012-07-13 21:10:20 +00:00
|
|
|
/**
|
2013-02-06 22:32:20 +00:00
|
|
|
* Get this frame's app, if the frame really is an app frame.
|
|
|
|
* Otherwise, return null.
|
2012-07-13 21:10:20 +00:00
|
|
|
*/
|
2013-02-06 22:32:20 +00:00
|
|
|
readonly attribute mozIApplication ownApp;
|
2012-07-13 21:10:20 +00:00
|
|
|
|
|
|
|
/**
|
2013-02-06 22:32:20 +00:00
|
|
|
* Get the app that contains this frame, if the frame really is an
|
|
|
|
* app or browser frame. This is the app associated with the frame
|
|
|
|
* element's principal. Otherwise, return null.
|
2012-07-13 21:10:20 +00:00
|
|
|
*/
|
2013-02-06 22:32:20 +00:00
|
|
|
readonly attribute mozIApplication containingApp;
|
2012-07-13 21:10:20 +00:00
|
|
|
|
2012-06-12 22:01:25 +00:00
|
|
|
/**
|
|
|
|
* Normally, a frame tries to create its frame loader when its src is
|
|
|
|
* modified, or its contentWindow is accessed.
|
|
|
|
*
|
|
|
|
* disallowCreateFrameLoader prevents the frame element from creating its
|
|
|
|
* frame loader (in the same way that not being inside a document prevents the
|
|
|
|
* creation of a frame loader). allowCreateFrameLoader lifts this restriction.
|
|
|
|
*
|
|
|
|
* These methods are not re-entrant -- it is an error to call
|
|
|
|
* disallowCreateFrameLoader twice without first calling allowFrameLoader.
|
|
|
|
*
|
|
|
|
* It's also an error to call either method if we already have a frame loader.
|
|
|
|
*/
|
|
|
|
void disallowCreateFrameLoader();
|
|
|
|
void allowCreateFrameLoader();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a remote (i.e., out-of-process) frame loader attached to the given
|
|
|
|
* tab parent.
|
|
|
|
*
|
|
|
|
* It is an error to call this method if we already have a frame loader.
|
|
|
|
*/
|
|
|
|
void createRemoteFrameLoader(in nsITabParent aTabParent);
|
2012-03-04 16:02:00 +00:00
|
|
|
};
|