Bug 1856663 - Add more chunks for Android mochitest-plain. r=jmaher,taskgraph-reviewe...
[gecko.git] / gfx / ipc / CompositorSession.cpp
blobbdc7ce7019e4810910facc8890ae76cd75d1e2b1
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "CompositorSession.h"
7 #include "base/process_util.h"
8 #include "GPUChild.h"
9 #include "mozilla/gfx/Logging.h"
10 #include "mozilla/gfx/GPUProcessHost.h"
11 #include "mozilla/layers/CompositorBridgeChild.h"
12 #include "mozilla/layers/CompositorBridgeParent.h"
14 namespace mozilla {
15 namespace layers {
17 using namespace gfx;
19 CompositorSession::CompositorSession(nsBaseWidget* aWidget,
20 CompositorWidgetDelegate* aDelegate,
21 CompositorBridgeChild* aChild,
22 const LayersId& aRootLayerTreeId)
23 : mWidget(aWidget),
24 mCompositorWidgetDelegate(aDelegate),
25 mCompositorBridgeChild(aChild),
26 mRootLayerTreeId(aRootLayerTreeId) {}
28 CompositorSession::~CompositorSession() = default;
30 CompositorBridgeChild* CompositorSession::GetCompositorBridgeChild() {
31 return mCompositorBridgeChild;
34 } // namespace layers
35 } // namespace mozilla