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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp

Issue 1785953002: Ignore viewport meta tags when Request Desktop Site is enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Call delegate() directly from NavigationControllerAndroid Created 4 years, 8 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/core/paint/PaintLayerScrollableArea.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
index bf50af9a258f09dd7c7cc13fc9646c23df85c0c4..fa6da88f9516f3a7b70a7ba2e6a4512c7cfc2662 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
@@ -1451,7 +1451,7 @@ bool PaintLayerScrollableArea::visualViewportSuppliesScrollbars() const
if (!frame || !frame->isMainFrame() || !frame->settings())
return false;
- return frame->settings()->viewportMetaEnabled();
+ return frame->settings()->viewportEnabled();
}
Widget* PaintLayerScrollableArea::getWidget()

Powered by Google App Engine
This is Rietveld 408576698