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

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

Issue 2915673003: ui/gfx: Use separate components for color_space and switches (Closed)
Patch Set: Review feedback Created 3 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/chrome_restart_request.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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 #include "media/midi/midi_switches.h" 93 #include "media/midi/midi_switches.h"
94 #include "net/cert/cert_verify_proc_android.h" 94 #include "net/cert/cert_verify_proc_android.h"
95 #include "net/nqe/effective_connection_type.h" 95 #include "net/nqe/effective_connection_type.h"
96 #include "ppapi/features/features.h" 96 #include "ppapi/features/features.h"
97 #include "printing/features/features.h" 97 #include "printing/features/features.h"
98 #include "services/device/public/cpp/device_features.h" 98 #include "services/device/public/cpp/device_features.h"
99 #include "ui/base/ui_base_switches.h" 99 #include "ui/base/ui_base_switches.h"
100 #include "ui/compositor/compositor_switches.h" 100 #include "ui/compositor/compositor_switches.h"
101 #include "ui/display/display_switches.h" 101 #include "ui/display/display_switches.h"
102 #include "ui/events/event_switches.h" 102 #include "ui/events/event_switches.h"
103 #include "ui/gfx/color_space_switches.h"
103 #include "ui/gfx/switches.h" 104 #include "ui/gfx/switches.h"
104 #include "ui/gl/gl_features.h" 105 #include "ui/gl/gl_features.h"
105 #include "ui/gl/gl_switches.h" 106 #include "ui/gl/gl_switches.h"
106 #include "ui/keyboard/keyboard_switches.h" 107 #include "ui/keyboard/keyboard_switches.h"
107 #include "ui/native_theme/native_theme_features.h" 108 #include "ui/native_theme/native_theme_features.h"
108 #include "ui/views/views_switches.h" 109 #include "ui/views/views_switches.h"
109 110
110 #if defined(OS_ANDROID) 111 #if defined(OS_ANDROID)
111 #include "chrome/browser/android/chrome_feature_list.h" 112 #include "chrome/browser/android/chrome_feature_list.h"
112 #else // OS_ANDROID 113 #else // OS_ANDROID
(...skipping 3198 matching lines...) Expand 10 before | Expand all | Expand 10 after
3311 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 3312 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
3312 3313
3313 const FeatureEntry* GetFeatureEntries(size_t* count) { 3314 const FeatureEntry* GetFeatureEntries(size_t* count) {
3314 *count = arraysize(kFeatureEntries); 3315 *count = arraysize(kFeatureEntries);
3315 return kFeatureEntries; 3316 return kFeatureEntries;
3316 } 3317 }
3317 3318
3318 } // namespace testing 3319 } // namespace testing
3319 3320
3320 } // namespace about_flags 3321 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/chrome_restart_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698