| OLD | NEW |
| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "components/translate/core/browser/translate_manager.h" | 66 #include "components/translate/core/browser/translate_manager.h" |
| 67 #include "components/translate/core/browser/translate_prefs.h" | 67 #include "components/translate/core/browser/translate_prefs.h" |
| 68 #include "components/version_info/version_info.h" | 68 #include "components/version_info/version_info.h" |
| 69 #include "content/public/browser/user_metrics.h" | 69 #include "content/public/browser/user_metrics.h" |
| 70 #include "content/public/common/content_features.h" | 70 #include "content/public/common/content_features.h" |
| 71 #include "content/public/common/content_switches.h" | 71 #include "content/public/common/content_switches.h" |
| 72 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h" | 72 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h" |
| 73 #include "content/public/common/features.h" | 73 #include "content/public/common/features.h" |
| 74 #include "extensions/features/features.h" | 74 #include "extensions/features/features.h" |
| 75 #include "gin/public/gin_features.h" | 75 #include "gin/public/gin_features.h" |
| 76 #include "gpu/config/gpu_switches.h" |
| 76 #include "media/audio/audio_features.h" | 77 #include "media/audio/audio_features.h" |
| 77 #include "media/base/media_switches.h" | 78 #include "media/base/media_switches.h" |
| 78 #include "media/media_features.h" | 79 #include "media/media_features.h" |
| 79 #include "media/midi/midi_switches.h" | 80 #include "media/midi/midi_switches.h" |
| 80 #include "ppapi/features/features.h" | 81 #include "ppapi/features/features.h" |
| 81 #include "printing/features/features.h" | 82 #include "printing/features/features.h" |
| 82 #include "ui/base/ui_base_switches.h" | 83 #include "ui/base/ui_base_switches.h" |
| 83 #include "ui/compositor/compositor_switches.h" | 84 #include "ui/compositor/compositor_switches.h" |
| 84 #include "ui/display/display_switches.h" | 85 #include "ui/display/display_switches.h" |
| 85 #include "ui/events/event_switches.h" | 86 #include "ui/events/event_switches.h" |
| (...skipping 2326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2412 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2413 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2413 | 2414 |
| 2414 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2415 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2415 *count = arraysize(kFeatureEntries); | 2416 *count = arraysize(kFeatureEntries); |
| 2416 return kFeatureEntries; | 2417 return kFeatureEntries; |
| 2417 } | 2418 } |
| 2418 | 2419 |
| 2419 } // namespace testing | 2420 } // namespace testing |
| 2420 | 2421 |
| 2421 } // namespace about_flags | 2422 } // namespace about_flags |
| OLD | NEW |