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

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

Issue 14225012: Remove a couple of unused includes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "apps/field_trial_names.h" 9 #include "apps/field_trial_names.h"
10 #include "apps/pref_names.h" 10 #include "apps/pref_names.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/metrics/field_trial.h" 12 #include "base/metrics/field_trial.h"
13 #include "base/prefs/pref_service.h" 13 #include "base/prefs/pref_service.h"
14 #include "base/string_util.h" 14 #include "base/string_util.h"
15 #include "base/stringprintf.h" 15 #include "base/stringprintf.h"
16 #include "base/strings/string_number_conversions.h" 16 #include "base/strings/string_number_conversions.h"
17 #include "base/strings/sys_string_conversions.h" 17 #include "base/strings/sys_string_conversions.h"
18 #include "base/utf_string_conversions.h" 18 #include "base/utf_string_conversions.h"
19 #include "chrome/browser/auto_launch_trial.h" 19 #include "chrome/browser/auto_launch_trial.h"
20 #include "chrome/browser/google/google_util.h" 20 #include "chrome/browser/google/google_util.h"
21 #include "chrome/browser/gpu/chrome_gpu_util.h" 21 #include "chrome/browser/gpu/chrome_gpu_util.h"
22 #include "chrome/browser/metrics/variations/variations_service.h"
23 #include "chrome/browser/omnibox/omnibox_field_trial.h" 22 #include "chrome/browser/omnibox/omnibox_field_trial.h"
24 #include "chrome/browser/prerender/prerender_field_trial.h" 23 #include "chrome/browser/prerender/prerender_field_trial.h"
25 #include "chrome/browser/profiles/profile_manager.h" 24 #include "chrome/browser/profiles/profile_manager.h"
26 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" 25 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h"
27 #include "chrome/browser/ui/sync/one_click_signin_helper.h" 26 #include "chrome/browser/ui/sync/one_click_signin_helper.h"
28 #include "chrome/common/chrome_switches.h" 27 #include "chrome/common/chrome_switches.h"
29 #include "chrome/common/chrome_version_info.h" 28 #include "chrome/common/chrome_version_info.h"
30 #include "chrome/common/metrics/variations/uniformity_field_trials.h" 29 #include "chrome/common/metrics/variations/uniformity_field_trials.h"
31 #include "chrome/common/metrics/variations/variations_util.h" 30 #include "chrome/common/metrics/variations/variations_util.h"
32 #include "chrome/common/pref_names.h" 31 #include "chrome/common/pref_names.h"
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 // Call |FindValue()| on the trials below, which may come from the server, to 275 // Call |FindValue()| on the trials below, which may come from the server, to
277 // ensure they get marked as "used" for the purposes of data reporting. 276 // ensure they get marked as "used" for the purposes of data reporting.
278 base::FieldTrialList::FindValue("UMA-Dynamic-Binary-Uniformity-Trial"); 277 base::FieldTrialList::FindValue("UMA-Dynamic-Binary-Uniformity-Trial");
279 base::FieldTrialList::FindValue("UMA-Dynamic-Uniformity-Trial"); 278 base::FieldTrialList::FindValue("UMA-Dynamic-Uniformity-Trial");
280 base::FieldTrialList::FindValue("InstantDummy"); 279 base::FieldTrialList::FindValue("InstantDummy");
281 base::FieldTrialList::FindValue("InstantChannel"); 280 base::FieldTrialList::FindValue("InstantChannel");
282 base::FieldTrialList::FindValue("Test0PercentDefault"); 281 base::FieldTrialList::FindValue("Test0PercentDefault");
283 // Activate the autocomplete dynamic field trials. 282 // Activate the autocomplete dynamic field trials.
284 OmniboxFieldTrial::ActivateDynamicTrials(); 283 OmniboxFieldTrial::ActivateDynamicTrials();
285 } 284 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698