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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_featu
res.h" | 44 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_featu
res.h" |
45 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc
hes.h" | 45 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc
hes.h" |
46 #include "components/dom_distiller/core/dom_distiller_switches.h" | 46 #include "components/dom_distiller/core/dom_distiller_switches.h" |
47 #include "components/error_page/common/error_page_switches.h" | 47 #include "components/error_page/common/error_page_switches.h" |
48 #include "components/favicon/core/features.h" | 48 #include "components/favicon/core/features.h" |
49 #include "components/flags_ui/feature_entry.h" | 49 #include "components/flags_ui/feature_entry.h" |
50 #include "components/flags_ui/feature_entry_macros.h" | 50 #include "components/flags_ui/feature_entry_macros.h" |
51 #include "components/flags_ui/flags_storage.h" | 51 #include "components/flags_ui/flags_storage.h" |
52 #include "components/flags_ui/flags_ui_switches.h" | 52 #include "components/flags_ui/flags_ui_switches.h" |
53 #include "components/nacl/common/nacl_switches.h" | 53 #include "components/nacl/common/nacl_switches.h" |
| 54 #include "components/network_session_configurator/common/network_switches.h" |
54 #include "components/ntp_snippets/features.h" | 55 #include "components/ntp_snippets/features.h" |
55 #include "components/ntp_snippets/ntp_snippets_constants.h" | 56 #include "components/ntp_snippets/ntp_snippets_constants.h" |
56 #include "components/ntp_tiles/constants.h" | 57 #include "components/ntp_tiles/constants.h" |
57 #include "components/ntp_tiles/switches.h" | 58 #include "components/ntp_tiles/switches.h" |
58 #include "components/offline_pages/core/offline_page_feature.h" | 59 #include "components/offline_pages/core/offline_page_feature.h" |
59 #include "components/omnibox/browser/omnibox_field_trial.h" | 60 #include "components/omnibox/browser/omnibox_field_trial.h" |
60 #include "components/omnibox/browser/omnibox_switches.h" | 61 #include "components/omnibox/browser/omnibox_switches.h" |
61 #include "components/password_manager/core/common/password_manager_features.h" | 62 #include "components/password_manager/core/common/password_manager_features.h" |
62 #include "components/previews/core/previews_features.h" | 63 #include "components/previews/core/previews_features.h" |
63 #include "components/proximity_auth/switches.h" | 64 #include "components/proximity_auth/switches.h" |
(...skipping 3219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3283 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 3284 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
3284 | 3285 |
3285 const FeatureEntry* GetFeatureEntries(size_t* count) { | 3286 const FeatureEntry* GetFeatureEntries(size_t* count) { |
3286 *count = arraysize(kFeatureEntries); | 3287 *count = arraysize(kFeatureEntries); |
3287 return kFeatureEntries; | 3288 return kFeatureEntries; |
3288 } | 3289 } |
3289 | 3290 |
3290 } // namespace testing | 3291 } // namespace testing |
3291 | 3292 |
3292 } // namespace about_flags | 3293 } // namespace about_flags |
OLD | NEW |