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 25 matching lines...) Expand all Loading... |
36 #include "components/autofill/core/common/autofill_switches.h" | 36 #include "components/autofill/core/common/autofill_switches.h" |
37 #include "components/browser_sync/common/browser_sync_switches.h" | 37 #include "components/browser_sync/common/browser_sync_switches.h" |
38 #include "components/cloud_devices/common/cloud_devices_switches.h" | 38 #include "components/cloud_devices/common/cloud_devices_switches.h" |
39 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc
hes.h" | 39 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc
hes.h" |
40 #include "components/dom_distiller/core/dom_distiller_switches.h" | 40 #include "components/dom_distiller/core/dom_distiller_switches.h" |
41 #include "components/error_page/common/error_page_switches.h" | 41 #include "components/error_page/common/error_page_switches.h" |
42 #include "components/flags_ui/feature_entry_macros.h" | 42 #include "components/flags_ui/feature_entry_macros.h" |
43 #include "components/flags_ui/flags_storage.h" | 43 #include "components/flags_ui/flags_storage.h" |
44 #include "components/flags_ui/flags_ui_switches.h" | 44 #include "components/flags_ui/flags_ui_switches.h" |
45 #include "components/nacl/common/nacl_switches.h" | 45 #include "components/nacl/common/nacl_switches.h" |
| 46 #include "components/network_session_configurator/switches.h" |
46 #include "components/offline_pages/offline_page_feature.h" | 47 #include "components/offline_pages/offline_page_feature.h" |
47 #include "components/offline_pages/offline_page_switches.h" | 48 #include "components/offline_pages/offline_page_switches.h" |
48 #include "components/omnibox/browser/omnibox_switches.h" | 49 #include "components/omnibox/browser/omnibox_switches.h" |
49 #include "components/password_manager/core/common/password_manager_features.h" | 50 #include "components/password_manager/core/common/password_manager_features.h" |
50 #include "components/proximity_auth/switches.h" | 51 #include "components/proximity_auth/switches.h" |
51 #include "components/quirks/switches.h" | 52 #include "components/quirks/switches.h" |
52 #include "components/search/search_switches.h" | 53 #include "components/search/search_switches.h" |
53 #include "components/security_state/switches.h" | 54 #include "components/security_state/switches.h" |
54 #include "components/signin/core/common/signin_switches.h" | 55 #include "components/signin/core/common/signin_switches.h" |
55 #include "components/sync_driver/sync_driver_switches.h" | 56 #include "components/sync_driver/sync_driver_switches.h" |
(...skipping 1955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2011 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2012 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
2012 | 2013 |
2013 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2014 const FeatureEntry* GetFeatureEntries(size_t* count) { |
2014 *count = arraysize(kFeatureEntries); | 2015 *count = arraysize(kFeatureEntries); |
2015 return kFeatureEntries; | 2016 return kFeatureEntries; |
2016 } | 2017 } |
2017 | 2018 |
2018 } // namespace testing | 2019 } // namespace testing |
2019 | 2020 |
2020 } // namespace about_flags | 2021 } // namespace about_flags |
OLD | NEW |