summaryrefslogtreecommitdiffstats
path: root/ui/android/resources
diff options
context:
space:
mode:
authorkhushalsagar <khushalsagar@chromium.org>2016-01-28 17:15:06 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-29 01:16:01 +0000
commite0a38d4e0b43b05e76c4544d9e715107c8e0a50f (patch)
treeb96d9894221fd69be9cb000a3182ed0cb5d55841 /ui/android/resources
parent1cb86235c55d2178751ac35cec20f285b5245165 (diff)
downloadchromium_src-e0a38d4e0b43b05e76c4544d9e715107c8e0a50f.zip
chromium_src-e0a38d4e0b43b05e76c4544d9e715107c8e0a50f.tar.gz
chromium_src-e0a38d4e0b43b05e76c4544d9e715107c8e0a50f.tar.bz2
cc:: Add remote mode to the compositor.
- Added RemoteChannelMain and RemoteChannelImpl to serialize and transmit inter-proxy messages between the main and impl components of the compositor using protobufs. - Added RemoteChannelHost to be used by the cc embedder as the API for interacting with the impl components of the remote compositor. - Added tests to verify the initialization and shutdown sequence for the remote compositor. BUG=550687 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1513643010 Cr-Commit-Position: refs/heads/master@{#372236}
Diffstat (limited to 'ui/android/resources')
-rw-r--r--ui/android/resources/resource_manager_impl_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/android/resources/resource_manager_impl_unittest.cc b/ui/android/resources/resource_manager_impl_unittest.cc
index 649ce7b..957b2a1 100644
--- a/ui/android/resources/resource_manager_impl_unittest.cc
+++ b/ui/android/resources/resource_manager_impl_unittest.cc
@@ -97,7 +97,7 @@ class ResourceManagerTest : public testing::Test {
params.settings = &settings;
params.task_graph_runner = &task_graph_runner_;
host_.reset(new MockLayerTreeHost(&params,
- cc::CompositorMode::SingleThreaded));
+ cc::CompositorMode::SINGLE_THREADED));
resource_manager_.Init(host_.get());
}