| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 #else | 74 #else |
| 75 #include "ui/message_center/message_center_switches.h" | 75 #include "ui/message_center/message_center_switches.h" |
| 76 #endif | 76 #endif |
| 77 | 77 |
| 78 #if defined(OS_CHROMEOS) | 78 #if defined(OS_CHROMEOS) |
| 79 #include "chromeos/chromeos_switches.h" | 79 #include "chromeos/chromeos_switches.h" |
| 80 #include "third_party/cros_system_api/switches/chrome_switches.h" | 80 #include "third_party/cros_system_api/switches/chrome_switches.h" |
| 81 #endif | 81 #endif |
| 82 | 82 |
| 83 #if defined(OS_WIN) | 83 #if defined(OS_WIN) |
| 84 #include "components/search_engines/desktop_search_win.h" | 84 #include "components/search_engines/desktop_search_utils_win.h" |
| 85 #endif // defined(OS_WIN) | 85 #endif // defined(OS_WIN) |
| 86 | 86 |
| 87 #if defined(ENABLE_APP_LIST) | 87 #if defined(ENABLE_APP_LIST) |
| 88 #include "ui/app_list/app_list_switches.h" | 88 #include "ui/app_list/app_list_switches.h" |
| 89 #endif | 89 #endif |
| 90 | 90 |
| 91 #if defined(ENABLE_EXTENSIONS) | 91 #if defined(ENABLE_EXTENSIONS) |
| 92 #include "extensions/common/switches.h" | 92 #include "extensions/common/switches.h" |
| 93 #endif | 93 #endif |
| 94 | 94 |
| (...skipping 2246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2341 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2341 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2342 | 2342 |
| 2343 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2343 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2344 *count = arraysize(kFeatureEntries); | 2344 *count = arraysize(kFeatureEntries); |
| 2345 return kFeatureEntries; | 2345 return kFeatureEntries; |
| 2346 } | 2346 } |
| 2347 | 2347 |
| 2348 } // namespace testing | 2348 } // namespace testing |
| 2349 | 2349 |
| 2350 } // namespace about_flags | 2350 } // namespace about_flags |
| OLD | NEW |