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

Unified Diff: Source/web/ChromeClientImpl.cpp

Issue 163933002: Send early ShowPress on TapDown when page isn't scrollable/pinchable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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: Source/web/ChromeClientImpl.cpp
diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp
index 814f6ea8201da32fa702dc1d28e85bcb67ccd2f0..b20f34615f1ce8be321e3113be97108774571eb5 100644
--- a/Source/web/ChromeClientImpl.cpp
+++ b/Source/web/ChromeClientImpl.cpp
@@ -987,6 +987,16 @@ void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input)
m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&input));
}
+float ChromeClientImpl::minimumPageScaleFactor() const
+{
+ return m_webView->minimumPageScaleFactor();
+}
+
+float ChromeClientImpl::maximumPageScaleFactor() const
+{
+ return m_webView->maximumPageScaleFactor();
+}
+
PassOwnPtr<NavigatorContentUtilsClientImpl> NavigatorContentUtilsClientImpl::create(WebViewImpl* webView)
{
return adoptPtr(new NavigatorContentUtilsClientImpl(webView));

Powered by Google App Engine
This is Rietveld 408576698