зеркало из https://github.com/mozilla/gecko-dev.git
149 строки
5.1 KiB
C++
149 строки
5.1 KiB
C++
/* -*- 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/. */
|
|
|
|
#include "mozilla/dom/CanonicalBrowsingContext.h"
|
|
|
|
#include "mozilla/dom/BrowsingContextGroup.h"
|
|
#include "mozilla/dom/WindowGlobalParent.h"
|
|
#include "mozilla/dom/ContentProcessManager.h"
|
|
|
|
extern mozilla::LazyLogModule gAutoplayPermissionLog;
|
|
|
|
#define AUTOPLAY_LOG(msg, ...) \
|
|
MOZ_LOG(gAutoplayPermissionLog, LogLevel::Debug, (msg, ##__VA_ARGS__))
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
extern mozilla::LazyLogModule gUserInteractionPRLog;
|
|
|
|
#define USER_ACTIVATION_LOG(msg, ...) \
|
|
MOZ_LOG(gUserInteractionPRLog, LogLevel::Debug, (msg, ##__VA_ARGS__))
|
|
|
|
CanonicalBrowsingContext::CanonicalBrowsingContext(BrowsingContext* aParent,
|
|
BrowsingContextGroup* aGroup,
|
|
uint64_t aBrowsingContextId,
|
|
uint64_t aProcessId,
|
|
BrowsingContext::Type aType)
|
|
: BrowsingContext(aParent, aGroup, aBrowsingContextId, aType),
|
|
mProcessId(aProcessId) {
|
|
// You are only ever allowed to create CanonicalBrowsingContexts in the
|
|
// parent process.
|
|
MOZ_RELEASE_ASSERT(XRE_IsParentProcess());
|
|
}
|
|
|
|
/* static */
|
|
already_AddRefed<CanonicalBrowsingContext> CanonicalBrowsingContext::Get(
|
|
uint64_t aId) {
|
|
MOZ_RELEASE_ASSERT(XRE_IsParentProcess());
|
|
return BrowsingContext::Get(aId).downcast<CanonicalBrowsingContext>();
|
|
}
|
|
|
|
/* static */
|
|
CanonicalBrowsingContext* CanonicalBrowsingContext::Cast(
|
|
BrowsingContext* aContext) {
|
|
MOZ_RELEASE_ASSERT(XRE_IsParentProcess());
|
|
return static_cast<CanonicalBrowsingContext*>(aContext);
|
|
}
|
|
|
|
/* static */
|
|
const CanonicalBrowsingContext* CanonicalBrowsingContext::Cast(
|
|
const BrowsingContext* aContext) {
|
|
MOZ_RELEASE_ASSERT(XRE_IsParentProcess());
|
|
return static_cast<const CanonicalBrowsingContext*>(aContext);
|
|
}
|
|
|
|
ContentParent* CanonicalBrowsingContext::GetContentParent() const {
|
|
if (mProcessId == 0) {
|
|
return nullptr;
|
|
}
|
|
|
|
ContentProcessManager* cpm = ContentProcessManager::GetSingleton();
|
|
return cpm->GetContentProcessById(ContentParentId(mProcessId));
|
|
}
|
|
|
|
void CanonicalBrowsingContext::GetWindowGlobals(
|
|
nsTArray<RefPtr<WindowGlobalParent>>& aWindows) {
|
|
aWindows.SetCapacity(mWindowGlobals.Count());
|
|
for (auto iter = mWindowGlobals.Iter(); !iter.Done(); iter.Next()) {
|
|
aWindows.AppendElement(iter.Get()->GetKey());
|
|
}
|
|
}
|
|
|
|
void CanonicalBrowsingContext::RegisterWindowGlobal(
|
|
WindowGlobalParent* aGlobal) {
|
|
MOZ_ASSERT(!mWindowGlobals.Contains(aGlobal), "Global already registered!");
|
|
mWindowGlobals.PutEntry(aGlobal);
|
|
}
|
|
|
|
void CanonicalBrowsingContext::UnregisterWindowGlobal(
|
|
WindowGlobalParent* aGlobal) {
|
|
MOZ_ASSERT(mWindowGlobals.Contains(aGlobal), "Global not registered!");
|
|
mWindowGlobals.RemoveEntry(aGlobal);
|
|
|
|
// Our current window global should be in our mWindowGlobals set. If it's not
|
|
// anymore, clear that reference.
|
|
if (aGlobal == mCurrentWindowGlobal) {
|
|
mCurrentWindowGlobal = nullptr;
|
|
}
|
|
}
|
|
|
|
void CanonicalBrowsingContext::SetCurrentWindowGlobal(
|
|
WindowGlobalParent* aGlobal) {
|
|
MOZ_ASSERT(mWindowGlobals.Contains(aGlobal), "Global not registered!");
|
|
|
|
// TODO: This should probably assert that the processes match.
|
|
mCurrentWindowGlobal = aGlobal;
|
|
}
|
|
|
|
bool CanonicalBrowsingContext::ValidateTransaction(
|
|
const Transaction& aTransaction, ContentParent* aProcess) {
|
|
if (NS_WARN_IF(aProcess && mProcessId != aProcess->ChildID())) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
JSObject* CanonicalBrowsingContext::WrapObject(
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) {
|
|
return CanonicalBrowsingContext_Binding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
void CanonicalBrowsingContext::Traverse(
|
|
nsCycleCollectionTraversalCallback& cb) {
|
|
CanonicalBrowsingContext* tmp = this;
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mWindowGlobals);
|
|
}
|
|
|
|
void CanonicalBrowsingContext::Unlink() {
|
|
CanonicalBrowsingContext* tmp = this;
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mWindowGlobals);
|
|
}
|
|
|
|
void CanonicalBrowsingContext::NotifyStartDelayedAutoplayMedia() {
|
|
if (!mCurrentWindowGlobal) {
|
|
return;
|
|
}
|
|
|
|
// As this function would only be called when user click the play icon on the
|
|
// tab bar. That's clear user intent to play, so gesture activate the browsing
|
|
// context so that the block-autoplay logic allows the media to autoplay.
|
|
NotifyUserGestureActivation();
|
|
AUTOPLAY_LOG("NotifyStartDelayedAutoplayMedia for chrome bc 0x%08" PRIx64,
|
|
Id());
|
|
StartDelayedAutoplayMediaComponents();
|
|
// Notfiy all content browsing contexts which are related with the canonical
|
|
// browsing content tree to start delayed autoplay media.
|
|
for (auto iter = Group()->ContentParentsIter(); !iter.Done(); iter.Next()) {
|
|
auto entry = iter.Get();
|
|
Unused << entry->GetKey()->SendStartDelayedAutoplayMediaComponents(this);
|
|
}
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|