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

Unified Diff: cc/single_thread_proxy.cc

Issue 11967015: Hide location bar on WebKit programmatic scroll. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't plumb through WebLayerTreeView Created 7 years, 11 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/single_thread_proxy.cc
diff --git a/cc/single_thread_proxy.cc b/cc/single_thread_proxy.cc
index 657cc366230384c166af67f2182bbc63b6ffcff2..b732b372a58c01175bbe1f42c9be763198c8e0d0 100644
--- a/cc/single_thread_proxy.cc
+++ b/cc/single_thread_proxy.cc
@@ -78,6 +78,11 @@ void SingleThreadProxy::startPageScaleAnimation(gfx::Vector2d targetOffset, bool
m_layerTreeHostImpl->startPageScaleAnimation(targetOffset, useAnchor, scale, base::TimeTicks::Now(), duration);
}
+void SingleThreadProxy::programmaticScroll(gfx::Vector2d targetOffset) OVERRIDE
+{
+ m_layerTreeHostImpl->programmaticScroll(targetOffset);
+}
+
void SingleThreadProxy::finishAllRendering()
{
DCHECK(Proxy::isMainThread());
« no previous file with comments | « cc/single_thread_proxy.h ('k') | cc/thread_proxy.h » ('j') | cc/top_controls_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698