| 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 "ui/events/event_switches.h" | 36 #include "ui/events/event_switches.h" |
| 37 #include "ui/gfx/switches.h" | 37 #include "ui/gfx/switches.h" |
| 38 #include "ui/gl/gl_switches.h" | 38 #include "ui/gl/gl_switches.h" |
| 39 #include "ui/keyboard/keyboard_switches.h" | 39 #include "ui/keyboard/keyboard_switches.h" |
| 40 #include "ui/native_theme/native_theme_switches.h" | 40 #include "ui/native_theme/native_theme_switches.h" |
| 41 #include "ui/views/views_switches.h" | 41 #include "ui/views/views_switches.h" |
| 42 | 42 |
| 43 #if defined(OS_ANDROID) | 43 #if defined(OS_ANDROID) |
| 44 #include "chrome/common/chrome_version_info.h" | 44 #include "chrome/common/chrome_version_info.h" |
| 45 #include "components/data_reduction_proxy/common/data_reduction_proxy_switches.h
" | 45 #include "components/data_reduction_proxy/common/data_reduction_proxy_switches.h
" |
| 46 #include "components/omnibox/omnibox_switches.h" |
| 46 #endif | 47 #endif |
| 47 | 48 |
| 48 #if defined(USE_ASH) | 49 #if defined(USE_ASH) |
| 49 #include "ash/ash_switches.h" | 50 #include "ash/ash_switches.h" |
| 50 #endif | 51 #endif |
| 51 | 52 |
| 52 #if defined(OS_CHROMEOS) | 53 #if defined(OS_CHROMEOS) |
| 53 #include "chromeos/chromeos_switches.h" | 54 #include "chromeos/chromeos_switches.h" |
| 54 #include "third_party/cros_system_api/switches/chrome_switches.h" | 55 #include "third_party/cros_system_api/switches/chrome_switches.h" |
| 55 #endif | 56 #endif |
| (...skipping 2382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2438 } | 2439 } |
| 2439 | 2440 |
| 2440 const Experiment* GetExperiments(size_t* count) { | 2441 const Experiment* GetExperiments(size_t* count) { |
| 2441 *count = num_experiments; | 2442 *count = num_experiments; |
| 2442 return experiments; | 2443 return experiments; |
| 2443 } | 2444 } |
| 2444 | 2445 |
| 2445 } // namespace testing | 2446 } // namespace testing |
| 2446 | 2447 |
| 2447 } // namespace about_flags | 2448 } // namespace about_flags |
| OLD | NEW |