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

Unified Diff: chrome/browser/chrome_gpu_util.cc

Issue 11337014: Enable force-compositing-mode on developer and continuous builds. This should start running the (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 2 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: chrome/browser/chrome_gpu_util.cc
diff --git a/chrome/browser/chrome_gpu_util.cc b/chrome/browser/chrome_gpu_util.cc
index 7885aed3bdba02d5639ac52d775d34922e07fba9..74a719c62fa8683c1fddd1d08fd61d2c95869c37 100644
--- a/chrome/browser/chrome_gpu_util.cc
+++ b/chrome/browser/chrome_gpu_util.cc
@@ -176,6 +176,12 @@ void InitializeCompositingFieldTrial() {
// Enable force-compositing-mode on the Mac.
force_compositing_mode_probability = kDivisor;
#endif
+ } else if (channel == chrome::VersionInfo::CHANNEL_UNKNOWN) {
+ // Continuous and local builds on windows and mac
+ // enable force-compositing-mode
+#if defined(OS_WIN) || defined(OS_MACOSX)
+ force_compositing_mode_probability = kDivisor;
+#endif
}
int force_compositing_group = trial->AppendGroup(
« 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