Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: cc/blimp/remote_compositor_bridge.cc

Issue 2362073002: cc/blimp: Add a LayerTreeHostRemote implementation. (Closed)
Patch Set: begin_frame_args Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/blimp/remote_compositor_bridge.h ('k') | cc/blimp/remote_compositor_bridge_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/blimp/remote_compositor_bridge.cc
diff --git a/cc/blimp/remote_compositor_bridge.cc b/cc/blimp/remote_compositor_bridge.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0ff2a21f1fd8b19510f7e128176c1b544c60d23a
--- /dev/null
+++ b/cc/blimp/remote_compositor_bridge.cc
@@ -0,0 +1,17 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "cc/blimp/remote_compositor_bridge.h"
+
+#include "base/single_thread_task_runner.h"
+
+namespace cc {
+
+RemoteCompositorBridge::RemoteCompositorBridge(
+ scoped_refptr<base::SingleThreadTaskRunner> compositor_main_task_runner)
+ : compositor_main_task_runner_(std::move(compositor_main_task_runner)) {}
+
+RemoteCompositorBridge::~RemoteCompositorBridge() = default;
+
+} // namespace cc
« no previous file with comments | « cc/blimp/remote_compositor_bridge.h ('k') | cc/blimp/remote_compositor_bridge_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698