2019-02-16 01:20:51 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef nsFrameLoaderOwner_h_
|
|
|
|
#define nsFrameLoaderOwner_h_
|
|
|
|
|
2019-04-29 23:06:22 +03:00
|
|
|
#include "nsISupports.h"
|
|
|
|
|
2019-02-16 01:20:51 +03:00
|
|
|
class nsFrameLoader;
|
2019-03-14 04:25:07 +03:00
|
|
|
namespace mozilla {
|
|
|
|
class ErrorResult;
|
|
|
|
namespace dom {
|
2019-04-08 19:27:28 +03:00
|
|
|
class BrowsingContext;
|
2019-03-14 04:25:07 +03:00
|
|
|
struct RemotenessOptions;
|
2019-04-08 19:27:28 +03:00
|
|
|
} // namespace dom
|
2019-03-14 04:25:07 +03:00
|
|
|
} // namespace mozilla
|
2019-02-16 01:20:51 +03:00
|
|
|
|
|
|
|
// IID for the FrameLoaderOwner interface
|
|
|
|
#define NS_FRAMELOADEROWNER_IID \
|
|
|
|
{ \
|
|
|
|
0x1b4fd25c, 0x2e57, 0x11e9, { \
|
|
|
|
0x9e, 0x5a, 0x5b, 0x86, 0xe9, 0x89, 0xa5, 0xc0 \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mixin that handles ownership of nsFrameLoader for Frame elements
|
|
|
|
// (XULFrameElement, HTMLI/FrameElement, etc...). Manages information when doing
|
|
|
|
// FrameLoader swaps.
|
|
|
|
//
|
|
|
|
// This class is considered an XPCOM mixin. This means that while we inherit
|
|
|
|
// from ISupports in order to be QI'able, we expect the classes that inherit
|
|
|
|
// nsFrameLoaderOwner to actually implement ISupports for us.
|
|
|
|
class nsFrameLoaderOwner : public nsISupports {
|
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_FRAMELOADEROWNER_IID)
|
|
|
|
|
|
|
|
nsFrameLoaderOwner() = default;
|
|
|
|
already_AddRefed<nsFrameLoader> GetFrameLoader();
|
|
|
|
void SetFrameLoader(nsFrameLoader* aNewFrameLoader);
|
2019-02-16 22:20:37 +03:00
|
|
|
|
2019-04-08 19:27:28 +03:00
|
|
|
already_AddRefed<mozilla::dom::BrowsingContext> GetBrowsingContext();
|
|
|
|
|
2019-03-14 04:25:07 +03:00
|
|
|
// Destroy (if it exists) and recreate our frameloader, based on new
|
|
|
|
// remoteness requirements. This should follow the same path as
|
|
|
|
// tabbrowser.js's updateBrowserRemoteness, including running the same logic
|
|
|
|
// and firing the same events as unbinding a XULBrowserElement from the tree.
|
|
|
|
// However, this method is available from backend and does not manipulate the
|
|
|
|
// DOM.
|
|
|
|
void ChangeRemoteness(const mozilla::dom::RemotenessOptions& aOptions,
|
|
|
|
mozilla::ErrorResult& rv);
|
|
|
|
|
2019-06-10 16:06:46 +03:00
|
|
|
private:
|
|
|
|
bool UseRemoteSubframes();
|
|
|
|
bool ShouldPreserveBrowsingContext(
|
|
|
|
const mozilla::dom::RemotenessOptions& aOptions);
|
|
|
|
|
2019-02-16 01:20:51 +03:00
|
|
|
protected:
|
|
|
|
virtual ~nsFrameLoaderOwner() = default;
|
|
|
|
RefPtr<nsFrameLoader> mFrameLoader;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsFrameLoaderOwner, NS_FRAMELOADEROWNER_IID)
|
|
|
|
|
|
|
|
#endif // nsFrameLoaderOwner_h_
|