| 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 17 matching lines...) Expand all Loading... |
| 28 #include "cc/base/switches.h" | 28 #include "cc/base/switches.h" |
| 29 #include "chrome/common/channel_info.h" | 29 #include "chrome/common/channel_info.h" |
| 30 #include "chrome/common/chrome_content_client.h" | 30 #include "chrome/common/chrome_content_client.h" |
| 31 #include "chrome/common/chrome_features.h" | 31 #include "chrome/common/chrome_features.h" |
| 32 #include "chrome/common/chrome_switches.h" | 32 #include "chrome/common/chrome_switches.h" |
| 33 #include "chrome/common/features.h" | 33 #include "chrome/common/features.h" |
| 34 #include "chrome/grit/chromium_strings.h" | 34 #include "chrome/grit/chromium_strings.h" |
| 35 #include "chrome/grit/generated_resources.h" | 35 #include "chrome/grit/generated_resources.h" |
| 36 #include "components/autofill/core/browser/autofill_experiments.h" | 36 #include "components/autofill/core/browser/autofill_experiments.h" |
| 37 #include "components/autofill/core/common/autofill_switches.h" | 37 #include "components/autofill/core/common/autofill_switches.h" |
| 38 #include "components/browser_sync/common/browser_sync_switches.h" | 38 #include "components/browser_sync/browser_sync_switches.h" |
| 39 #include "components/cloud_devices/common/cloud_devices_switches.h" | 39 #include "components/cloud_devices/common/cloud_devices_switches.h" |
| 40 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc
hes.h" | 40 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc
hes.h" |
| 41 #include "components/dom_distiller/core/dom_distiller_switches.h" | 41 #include "components/dom_distiller/core/dom_distiller_switches.h" |
| 42 #include "components/error_page/common/error_page_switches.h" | 42 #include "components/error_page/common/error_page_switches.h" |
| 43 #include "components/flags_ui/feature_entry_macros.h" | 43 #include "components/flags_ui/feature_entry_macros.h" |
| 44 #include "components/flags_ui/flags_storage.h" | 44 #include "components/flags_ui/flags_storage.h" |
| 45 #include "components/flags_ui/flags_ui_switches.h" | 45 #include "components/flags_ui/flags_ui_switches.h" |
| 46 #include "components/nacl/common/nacl_switches.h" | 46 #include "components/nacl/common/nacl_switches.h" |
| 47 #include "components/ntp_snippets/features.h" | 47 #include "components/ntp_snippets/features.h" |
| 48 #include "components/ntp_snippets/ntp_snippets_constants.h" | 48 #include "components/ntp_snippets/ntp_snippets_constants.h" |
| (...skipping 2219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2268 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2268 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2269 | 2269 |
| 2270 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2270 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2271 *count = arraysize(kFeatureEntries); | 2271 *count = arraysize(kFeatureEntries); |
| 2272 return kFeatureEntries; | 2272 return kFeatureEntries; |
| 2273 } | 2273 } |
| 2274 | 2274 |
| 2275 } // namespace testing | 2275 } // namespace testing |
| 2276 | 2276 |
| 2277 } // namespace about_flags | 2277 } // namespace about_flags |
| OLD | NEW |