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

Unified Diff: chrome/renderer/render_thread.cc

Issue 6317004: Feature to disable field trials in old versions of Chromium. Field trials... (Closed) Base URL: svn://chrome-svn/chrome/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 71562)
+++ chrome/renderer/render_thread.cc (working copy)
@@ -305,8 +305,10 @@
// channel is established in time, EstablishGpuChannelSync will not block when
// it is later called. Delays by a fixed period of time to avoid loading the
// GPU immediately in an attempt to not slow startup time.
+ // After June 30, 2011 builds, it will always be in default group.
scoped_refptr<base::FieldTrial> prelaunch_trial(
- new base::FieldTrial("PrelaunchGpuProcessExperiment", 100));
+ new base::FieldTrial("PrelaunchGpuProcessExperiment", 100,
+ "prelaunch_gpu_process_default", 2011, 6, 30));
int prelaunch_group = prelaunch_trial->AppendGroup("prelaunch_gpu_process",
kPrelauchGpuPercentage);
if (prelaunch_group == prelaunch_trial->group() ||

Powered by Google App Engine
This is Rietveld 408576698