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

Unified Diff: chrome/renderer/render_thread.cc

Issue 6213001: disable field trials if the build is 30 days or older (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 11 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: chrome/renderer/render_thread.cc
===================================================================
--- chrome/renderer/render_thread.cc (revision 70854)
+++ chrome/renderer/render_thread.cc (working copy)
@@ -310,6 +310,8 @@
new base::FieldTrial("PrelaunchGpuProcessExperiment", 100));
int prelaunch_group = prelaunch_trial->AppendGroup("prelaunch_gpu_process",
kPrelauchGpuPercentage);
+ prelaunch_trial->AppendGroup("default_prelaunch_gpu_process",
+ base::FieldTrial::kAllRemainingProbability);
if (prelaunch_group == prelaunch_trial->group() ||
CommandLine::ForCurrentProcess()->HasSwitch(
switches::kPrelaunchGpuProcess)) {

Powered by Google App Engine
This is Rietveld 408576698