| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 #include "components/sync/driver/sync_driver_switches.h" | 69 #include "components/sync/driver/sync_driver_switches.h" |
| 70 #include "components/tracing/common/tracing_switches.h" | 70 #include "components/tracing/common/tracing_switches.h" |
| 71 #include "components/translate/core/browser/translate_manager.h" | 71 #include "components/translate/core/browser/translate_manager.h" |
| 72 #include "components/translate/core/browser/translate_prefs.h" | 72 #include "components/translate/core/browser/translate_prefs.h" |
| 73 #include "components/version_info/version_info.h" | 73 #include "components/version_info/version_info.h" |
| 74 #include "content/public/common/content_features.h" | 74 #include "content/public/common/content_features.h" |
| 75 #include "content/public/common/content_switches.h" | 75 #include "content/public/common/content_switches.h" |
| 76 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h" | 76 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h" |
| 77 #include "content/public/common/features.h" | 77 #include "content/public/common/features.h" |
| 78 #include "device/base/features.h" | 78 #include "device/base/features.h" |
| 79 #include "device/vr/features.h" | 79 #include "device/vr/features/features.h" |
| 80 #include "extensions/features/features.h" | 80 #include "extensions/features/features.h" |
| 81 #include "gin/public/gin_features.h" | 81 #include "gin/public/gin_features.h" |
| 82 #include "gpu/config/gpu_switches.h" | 82 #include "gpu/config/gpu_switches.h" |
| 83 #include "media/audio/audio_features.h" | 83 #include "media/audio/audio_features.h" |
| 84 #include "media/base/media_switches.h" | 84 #include "media/base/media_switches.h" |
| 85 #include "media/media_features.h" | 85 #include "media/media_features.h" |
| 86 #include "media/midi/midi_switches.h" | 86 #include "media/midi/midi_switches.h" |
| 87 #include "net/cert/cert_verify_proc_android.h" | 87 #include "net/cert/cert_verify_proc_android.h" |
| 88 #include "ppapi/features/features.h" | 88 #include "ppapi/features/features.h" |
| 89 #include "printing/features/features.h" | 89 #include "printing/features/features.h" |
| (...skipping 2882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2972 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2972 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2973 | 2973 |
| 2974 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2974 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2975 *count = arraysize(kFeatureEntries); | 2975 *count = arraysize(kFeatureEntries); |
| 2976 return kFeatureEntries; | 2976 return kFeatureEntries; |
| 2977 } | 2977 } |
| 2978 | 2978 |
| 2979 } // namespace testing | 2979 } // namespace testing |
| 2980 | 2980 |
| 2981 } // namespace about_flags | 2981 } // namespace about_flags |
| OLD | NEW |