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

Unified Diff: chrome/browser/chrome_browser_field_trials_mobile.cc

Issue 14247021: Split the field trial setup code into desktop and mobile files. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebased Created 7 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
« no previous file with comments | « chrome/browser/chrome_browser_field_trials_mobile.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_browser_field_trials_mobile.cc
diff --git a/chrome/browser/chrome_browser_field_trials_mobile.cc b/chrome/browser/chrome_browser_field_trials_mobile.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7fb1896e289e12e5dab86fa6f9d774dcff6e60ed
--- /dev/null
+++ b/chrome/browser/chrome_browser_field_trials_mobile.cc
@@ -0,0 +1,62 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/chrome_browser_field_trials_mobile.h"
+
+#include <string>
+
+#include "base/command_line.h"
+#include "base/metrics/field_trial.h"
+#include "base/prefs/pref_service.h"
+#include "chrome/common/chrome_version_info.h"
+
+namespace chrome {
+
+namespace {
+
+// Governs the rollout of the compression proxy for Chrome on mobile platforms.
+// Always enabled in DEV and BETA versions.
Nico 2014/04/22 22:08:33 I saw this today. What's the motivation for this?
marq (ping after 24h) 2014/04/24 00:45:32 Nico, This trial just gated exposure of the setti
+// Stable percentage will be controlled from server.
+void DataCompressionProxyFieldTrial() {
+ const char kDataCompressionProxyFieldTrialName[] =
+ "DataCompressionProxyRollout";
+ const base::FieldTrial::Probability kDataCompressionProxyDivisor = 1000;
+
+ // 10/1000 = 1% for starters.
+ const base::FieldTrial::Probability kDataCompressionProxyStable = 10;
+ const char kEnabled[] = "Enabled";
+ const char kDisabled[] = "Disabled";
+
+ // Find out if this is a stable channel.
+ const bool kIsStableChannel =
+ chrome::VersionInfo::GetChannel() == chrome::VersionInfo::CHANNEL_STABLE;
+
+ // Experiment enabled until Jan 1, 2015. By default, disabled.
+ scoped_refptr<base::FieldTrial> trial(
+ base::FieldTrialList::FactoryGetFieldTrial(
+ kDataCompressionProxyFieldTrialName, kDataCompressionProxyDivisor,
+ kDisabled, 2015, 1, 1, NULL));
+
+ // We want our trial results to be persistent.
+ trial->UseOneTimeRandomization();
+ // Non-stable channels will run with probability 1.
+ const int kEnabledGroup = trial->AppendGroup(
+ kEnabled,
+ kIsStableChannel ?
+ kDataCompressionProxyStable : kDataCompressionProxyDivisor);
+
+ const int v = trial->group();
+ VLOG(1) << "DataCompression proxy enabled group id: " << kEnabledGroup
+ << ". Selected group id: " << v;
+}
+
+} // namespace
+
+void SetupMobileFieldTrials(const CommandLine& parsed_command_line,
+ const base::Time& install_time,
+ PrefService* local_state) {
+ DataCompressionProxyFieldTrial();
+}
+
+} // namespace chrome
« no previous file with comments | « chrome/browser/chrome_browser_field_trials_mobile.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698