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

Unified Diff: content/renderer/render_view_impl.cc

Issue 12939013: Set default fixed-position compositing setting to disabled (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index 1d8d497874b5025ced296a445c4f2f52c7a7181c..b1a51cf992406544cf7c21e10c75408446a6cdd3 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -542,8 +542,8 @@ static bool ShouldUseFixedPositionCompositing(float device_scale_factor) {
switches::kEnableHighDpiCompositingForFixedPosition))
return true;
- // Default, when no switches are specified, is also dependent on high-DPI.
- return device_scale_factor > 1.0f;
+ // Default, when no switches are specified, is disabled.
+ return false;
}
///////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698