| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #include "components/ntp_tiles/switches.h" | 49 #include "components/ntp_tiles/switches.h" |
| 50 #include "components/offline_pages/offline_page_feature.h" | 50 #include "components/offline_pages/offline_page_feature.h" |
| 51 #include "components/omnibox/browser/omnibox_switches.h" | 51 #include "components/omnibox/browser/omnibox_switches.h" |
| 52 #include "components/password_manager/core/common/password_manager_features.h" | 52 #include "components/password_manager/core/common/password_manager_features.h" |
| 53 #include "components/proximity_auth/switches.h" | 53 #include "components/proximity_auth/switches.h" |
| 54 #include "components/search/search_switches.h" | 54 #include "components/search/search_switches.h" |
| 55 #include "components/security_state/switches.h" | 55 #include "components/security_state/switches.h" |
| 56 #include "components/signin/core/common/signin_switches.h" | 56 #include "components/signin/core/common/signin_switches.h" |
| 57 #include "components/spellcheck/common/spellcheck_switches.h" | 57 #include "components/spellcheck/common/spellcheck_switches.h" |
| 58 #include "components/ssl_config/ssl_config_switches.h" | 58 #include "components/ssl_config/ssl_config_switches.h" |
| 59 #include "components/sync_driver/sync_driver_switches.h" | 59 #include "components/sync/driver/sync_driver_switches.h" |
| 60 #include "components/tracing/common/tracing_switches.h" | 60 #include "components/tracing/common/tracing_switches.h" |
| 61 #include "components/translate/core/browser/translate_manager.h" | 61 #include "components/translate/core/browser/translate_manager.h" |
| 62 #include "components/translate/core/browser/translate_prefs.h" | 62 #include "components/translate/core/browser/translate_prefs.h" |
| 63 #include "components/version_info/version_info.h" | 63 #include "components/version_info/version_info.h" |
| 64 #include "content/public/browser/user_metrics.h" | 64 #include "content/public/browser/user_metrics.h" |
| 65 #include "content/public/common/content_features.h" | 65 #include "content/public/common/content_features.h" |
| 66 #include "content/public/common/content_switches.h" | 66 #include "content/public/common/content_switches.h" |
| 67 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h" | 67 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h" |
| 68 #include "content/public/common/features.h" | 68 #include "content/public/common/features.h" |
| 69 #include "gin/public/gin_features.h" | 69 #include "gin/public/gin_features.h" |
| (...skipping 2178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2248 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2248 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2249 | 2249 |
| 2250 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2250 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2251 *count = arraysize(kFeatureEntries); | 2251 *count = arraysize(kFeatureEntries); |
| 2252 return kFeatureEntries; | 2252 return kFeatureEntries; |
| 2253 } | 2253 } |
| 2254 | 2254 |
| 2255 } // namespace testing | 2255 } // namespace testing |
| 2256 | 2256 |
| 2257 } // namespace about_flags | 2257 } // namespace about_flags |
| OLD | NEW |