| 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 "net/cert/cert_verify_proc_android.h" | 81 #include "net/cert/cert_verify_proc_android.h" |
| 81 #include "ppapi/features/features.h" | 82 #include "ppapi/features/features.h" |
| 82 #include "printing/features/features.h" | 83 #include "printing/features/features.h" |
| 83 #include "ui/base/ui_base_switches.h" | 84 #include "ui/base/ui_base_switches.h" |
| 84 #include "ui/compositor/compositor_switches.h" | 85 #include "ui/compositor/compositor_switches.h" |
| 85 #include "ui/display/display_switches.h" | 86 #include "ui/display/display_switches.h" |
| (...skipping 2315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2401 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2402 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2402 | 2403 |
| 2403 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2404 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2404 *count = arraysize(kFeatureEntries); | 2405 *count = arraysize(kFeatureEntries); |
| 2405 return kFeatureEntries; | 2406 return kFeatureEntries; |
| 2406 } | 2407 } |
| 2407 | 2408 |
| 2408 } // namespace testing | 2409 } // namespace testing |
| 2409 | 2410 |
| 2410 } // namespace about_flags | 2411 } // namespace about_flags |
| OLD | NEW |