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

Unified Diff: cc/trees/proxy_main.cc

Issue 2340143002: cc: Rename LayerTreeHost to LayerTreeHostInProcess. (Closed)
Patch Set: comment fix Created 4 years, 3 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/trees/proxy_main.h ('k') | cc/trees/remote_channel_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/proxy_main.cc
diff --git a/cc/trees/proxy_main.cc b/cc/trees/proxy_main.cc
index 285e7a6e893d58f51f25400ee3d2aa968b3b1b8b..d9008a8223aa3d3076e43dc19c31c1a19afcd2db 100644
--- a/cc/trees/proxy_main.cc
+++ b/cc/trees/proxy_main.cc
@@ -17,7 +17,7 @@
#include "cc/output/swap_promise.h"
#include "cc/resources/ui_resource_manager.h"
#include "cc/trees/blocking_task_runner.h"
-#include "cc/trees/layer_tree_host.h"
+#include "cc/trees/layer_tree_host_in_process.h"
#include "cc/trees/remote_channel_main.h"
#include "cc/trees/scoped_abort_remaining_swap_promises.h"
#include "cc/trees/threaded_channel.h"
@@ -25,7 +25,7 @@
namespace cc {
std::unique_ptr<ProxyMain> ProxyMain::CreateThreaded(
- LayerTreeHost* layer_tree_host,
+ LayerTreeHostInProcess* layer_tree_host,
TaskRunnerProvider* task_runner_provider) {
std::unique_ptr<ProxyMain> proxy_main(
new ProxyMain(layer_tree_host, task_runner_provider));
@@ -36,7 +36,7 @@ std::unique_ptr<ProxyMain> ProxyMain::CreateThreaded(
std::unique_ptr<ProxyMain> ProxyMain::CreateRemote(
RemoteProtoChannel* remote_proto_channel,
- LayerTreeHost* layer_tree_host,
+ LayerTreeHostInProcess* layer_tree_host,
TaskRunnerProvider* task_runner_provider) {
std::unique_ptr<ProxyMain> proxy_main(
new ProxyMain(layer_tree_host, task_runner_provider));
@@ -45,7 +45,7 @@ std::unique_ptr<ProxyMain> ProxyMain::CreateRemote(
return proxy_main;
}
-ProxyMain::ProxyMain(LayerTreeHost* layer_tree_host,
+ProxyMain::ProxyMain(LayerTreeHostInProcess* layer_tree_host,
TaskRunnerProvider* task_runner_provider)
: layer_tree_host_(layer_tree_host),
task_runner_provider_(task_runner_provider),
« no previous file with comments | « cc/trees/proxy_main.h ('k') | cc/trees/remote_channel_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698