summaryrefslogtreecommitdiffstats
path: root/layout/ipc/RemoteLayerTreeOwner.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /layout/ipc/RemoteLayerTreeOwner.h
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/ipc/RemoteLayerTreeOwner.h')
-rw-r--r--layout/ipc/RemoteLayerTreeOwner.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/layout/ipc/RemoteLayerTreeOwner.h b/layout/ipc/RemoteLayerTreeOwner.h
new file mode 100644
index 0000000000..6a19dc293e
--- /dev/null
+++ b/layout/ipc/RemoteLayerTreeOwner.h
@@ -0,0 +1,88 @@
+/* -*- 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 mozilla_layout_RemoteLayerTreeOwner_h
+#define mozilla_layout_RemoteLayerTreeOwner_h
+
+#include "base/process.h"
+
+#include "mozilla/Attributes.h"
+
+#include "mozilla/dom/ipc/IdType.h"
+#include "mozilla/layers/CompositorOptions.h"
+#include "mozilla/layers/LayersTypes.h"
+#include "nsDisplayList.h"
+
+class nsFrameLoader;
+class nsSubDocumentFrame;
+
+namespace mozilla {
+
+namespace dom {
+class BrowserParent;
+} // namespace dom
+
+namespace layers {
+struct TextureFactoryIdentifier;
+} // namespace layers
+
+namespace layout {
+
+/**
+ * RemoteLayerTreeOwner connects and manages layer trees for remote frames. It
+ * is directly owned by a BrowserParent and always lives in the parent process.
+ */
+class RemoteLayerTreeOwner final {
+ typedef mozilla::layers::CompositorOptions CompositorOptions;
+ typedef mozilla::layers::LayerManager LayerManager;
+ typedef mozilla::layers::LayersId LayersId;
+ typedef mozilla::layers::TextureFactoryIdentifier TextureFactoryIdentifier;
+
+ public:
+ RemoteLayerTreeOwner();
+ virtual ~RemoteLayerTreeOwner();
+
+ bool Initialize(dom::BrowserParent* aBrowserParent);
+ void Destroy();
+
+ void EnsureLayersConnected(CompositorOptions* aCompositorOptions);
+ bool AttachWindowRenderer();
+ void OwnerContentChanged();
+
+ LayersId GetLayersId() const { return mLayersId; }
+ CompositorOptions GetCompositorOptions() const { return mCompositorOptions; }
+
+ void GetTextureFactoryIdentifier(
+ TextureFactoryIdentifier* aTextureFactoryIdentifier) const;
+
+ bool IsInitialized() const { return mInitialized; }
+ bool IsLayersConnected() const { return mLayersConnected; }
+
+ private:
+ // The process id of the remote frame. This is used by the compositor to
+ // do security checks on incoming layer transactions.
+ base::ProcessId mTabProcessId;
+ // The layers id of the remote frame.
+ LayersId mLayersId;
+ // The compositor options for this layers id. This is only meaningful if
+ // the compositor actually knows about this layers id (i.e. when
+ // mLayersConnected is true).
+ CompositorOptions mCompositorOptions;
+
+ dom::BrowserParent* mBrowserParent;
+ RefPtr<WindowRenderer> mWindowRenderer;
+
+ bool mInitialized;
+ // A flag that indicates whether or not the compositor knows about the
+ // layers id. In some cases this RemoteLayerTreeOwner is not connected to the
+ // compositor and so this flag is false.
+ bool mLayersConnected;
+};
+
+} // namespace layout
+} // namespace mozilla
+
+#endif // mozilla_layout_RemoteLayerTreeOwner_h