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

Unified Diff: cc/trees/threaded_channel.cc

Issue 2443613002: Rename classes related to top controls (Closed)
Patch Set: fix test 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
Index: cc/trees/threaded_channel.cc
diff --git a/cc/trees/threaded_channel.cc b/cc/trees/threaded_channel.cc
index a4ac63b3844b4eaed93237de65c7cb86c1ddae94..0cb576f99fc0c8dacd2474a60e54b49e7db903bf 100644
--- a/cc/trees/threaded_channel.cc
+++ b/cc/trees/threaded_channel.cc
@@ -37,14 +37,15 @@ ThreadedChannel::~ThreadedChannel() {
DCHECK(!IsInitialized());
}
-void ThreadedChannel::UpdateTopControlsStateOnImpl(TopControlsState constraints,
- TopControlsState current,
- bool animate) {
+void ThreadedChannel::UpdateBrowserControlsStateOnImpl(
+ BrowserControlsState constraints,
+ BrowserControlsState current,
+ bool animate) {
DCHECK(IsMainThread());
ImplThreadTaskRunner()->PostTask(
FROM_HERE,
- base::Bind(&ProxyImpl::UpdateTopControlsStateOnImpl, proxy_impl_weak_ptr_,
- constraints, current, animate));
+ base::Bind(&ProxyImpl::UpdateBrowserControlsStateOnImpl,
+ proxy_impl_weak_ptr_, constraints, current, animate));
}
void ThreadedChannel::InitializeCompositorFrameSinkOnImpl(
« no previous file with comments | « cc/trees/threaded_channel.h ('k') | chrome/android/java/src/org/chromium/chrome/browser/ApplicationInitialization.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698