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

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

Issue 447183003: Move OmniboxFieldTrial to components (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & fix switch indent Created 6 years, 4 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/android/omnibox/autocomplete_controller_android.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/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 25 matching lines...) Expand all
36 #include "ui/events/event_switches.h" 36 #include "ui/events/event_switches.h"
37 #include "ui/gfx/switches.h" 37 #include "ui/gfx/switches.h"
38 #include "ui/gl/gl_switches.h" 38 #include "ui/gl/gl_switches.h"
39 #include "ui/keyboard/keyboard_switches.h" 39 #include "ui/keyboard/keyboard_switches.h"
40 #include "ui/native_theme/native_theme_switches.h" 40 #include "ui/native_theme/native_theme_switches.h"
41 #include "ui/views/views_switches.h" 41 #include "ui/views/views_switches.h"
42 42
43 #if defined(OS_ANDROID) 43 #if defined(OS_ANDROID)
44 #include "chrome/common/chrome_version_info.h" 44 #include "chrome/common/chrome_version_info.h"
45 #include "components/data_reduction_proxy/common/data_reduction_proxy_switches.h " 45 #include "components/data_reduction_proxy/common/data_reduction_proxy_switches.h "
46 #include "components/omnibox/omnibox_switches.h"
46 #endif 47 #endif
47 48
48 #if defined(USE_ASH) 49 #if defined(USE_ASH)
49 #include "ash/ash_switches.h" 50 #include "ash/ash_switches.h"
50 #endif 51 #endif
51 52
52 #if defined(OS_CHROMEOS) 53 #if defined(OS_CHROMEOS)
53 #include "chromeos/chromeos_switches.h" 54 #include "chromeos/chromeos_switches.h"
54 #include "third_party/cros_system_api/switches/chrome_switches.h" 55 #include "third_party/cros_system_api/switches/chrome_switches.h"
55 #endif 56 #endif
(...skipping 2404 matching lines...) Expand 10 before | Expand all | Expand 10 after
2460 } 2461 }
2461 2462
2462 const Experiment* GetExperiments(size_t* count) { 2463 const Experiment* GetExperiments(size_t* count) {
2463 *count = num_experiments; 2464 *count = num_experiments;
2464 return experiments; 2465 return experiments;
2465 } 2466 }
2466 2467
2467 } // namespace testing 2468 } // namespace testing
2468 2469
2469 } // namespace about_flags 2470 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/omnibox/autocomplete_controller_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698