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

Side by Side Diff: chrome/browser/chrome_browser_field_trials.cc

Issue 819133004: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chrome_browser_field_trials.h" 5 #include "chrome/browser/chrome_browser_field_trials.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/metrics/field_trial.h" 10 #include "base/metrics/field_trial.h"
11 #include "base/prefs/pref_service.h" 11 #include "base/prefs/pref_service.h"
12 #include "base/strings/string_util.h" 12 #include "base/strings/string_util.h"
13 #include "base/time/time.h" 13 #include "base/time/time.h"
14 #include "chrome/common/chrome_switches.h" 14 #include "chrome/common/chrome_switches.h"
15 #include "chrome/common/chrome_version_info.h" 15 #include "chrome/common/chrome_version_info.h"
16 #include "chrome/common/variations/uniformity_field_trials.h" 16 #include "chrome/common/variations/uniformity_field_trials.h"
17 #include "components/metrics/metrics_pref_names.h" 17 #include "components/metrics/metrics_pref_names.h"
18 #include "components/omnibox/omnibox_field_trial.h" 18 #include "components/omnibox/omnibox_field_trial.h"
19 19
20 #if defined(OS_ANDROID) || defined(OS_IOS) 20 #if defined(OS_ANDROID) || defined(OS_IOS)
21 #include "chrome/browser/chrome_browser_field_trials_mobile.h" 21 #include "chrome/browser/chrome_browser_field_trials_mobile.h"
22 #else 22 #else
23 #include "chrome/browser/chrome_browser_field_trials_desktop.h" 23 #include "chrome/browser/chrome_browser_field_trials_desktop.h"
24 #endif 24 #endif
25 25
26 ChromeBrowserFieldTrials::ChromeBrowserFieldTrials( 26 ChromeBrowserFieldTrials::ChromeBrowserFieldTrials(
27 const CommandLine& parsed_command_line) 27 const base::CommandLine& parsed_command_line)
28 : parsed_command_line_(parsed_command_line) { 28 : parsed_command_line_(parsed_command_line) {
29 } 29 }
30 30
31 ChromeBrowserFieldTrials::~ChromeBrowserFieldTrials() { 31 ChromeBrowserFieldTrials::~ChromeBrowserFieldTrials() {
32 } 32 }
33 33
34 void ChromeBrowserFieldTrials::SetupFieldTrials(const base::Time& install_time, 34 void ChromeBrowserFieldTrials::SetupFieldTrials(const base::Time& install_time,
35 PrefService* local_state) { 35 PrefService* local_state) {
36 DCHECK(!install_time.is_null()); 36 DCHECK(!install_time.is_null());
37 37
(...skipping 12 matching lines...) Expand all
50 void ChromeBrowserFieldTrials::InstantiateDynamicTrials() { 50 void ChromeBrowserFieldTrials::InstantiateDynamicTrials() {
51 // The following trials are used from renderer process. 51 // The following trials are used from renderer process.
52 // Mark here so they will be sync-ed. 52 // Mark here so they will be sync-ed.
53 base::FieldTrialList::FindValue("CLD1VsCLD2"); 53 base::FieldTrialList::FindValue("CLD1VsCLD2");
54 base::FieldTrialList::FindValue("MouseEventPreconnect"); 54 base::FieldTrialList::FindValue("MouseEventPreconnect");
55 base::FieldTrialList::FindValue("DisplayList2dCanvas"); 55 base::FieldTrialList::FindValue("DisplayList2dCanvas");
56 base::FieldTrialList::FindValue("V8ScriptStreaming"); 56 base::FieldTrialList::FindValue("V8ScriptStreaming");
57 // Activate the autocomplete dynamic field trials. 57 // Activate the autocomplete dynamic field trials.
58 OmniboxFieldTrial::ActivateDynamicTrials(); 58 OmniboxFieldTrial::ActivateDynamicTrials();
59 } 59 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_shutdown.cc ('k') | chrome/browser/chrome_browser_field_trials_desktop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698