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

Unified Diff: third_party/WebKit/Source/web/ChromeClientImpl.cpp

Issue 2237433004: Adds DevTools commands for forced viewport override. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync. Created 4 years, 4 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: third_party/WebKit/Source/web/ChromeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
index 47dc1fbf2292106d213928f9ca31439b71e48397..5387e55ae5795d470a7e174068a048618f446a48 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -606,6 +606,11 @@ void ChromeClientImpl::pageScaleFactorChanged() const
m_webView->pageScaleFactorChanged();
}
+void ChromeClientImpl::mainFrameScrollOffsetChanged() const
+{
+ m_webView->mainFrameScrollOffsetChanged();
+}
+
float ChromeClientImpl::clampPageScaleFactorToLimits(float scale) const
{
return m_webView->clampPageScaleFactorToLimits(scale);

Powered by Google App Engine
This is Rietveld 408576698