| 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 18 matching lines...) Expand all Loading... |
| 29 #include "components/cloud_devices/common/cloud_devices_switches.h" | 29 #include "components/cloud_devices/common/cloud_devices_switches.h" |
| 30 #include "components/dom_distiller/core/dom_distiller_switches.h" | 30 #include "components/dom_distiller/core/dom_distiller_switches.h" |
| 31 #include "components/enhanced_bookmarks/enhanced_bookmark_switches.h" | 31 #include "components/enhanced_bookmarks/enhanced_bookmark_switches.h" |
| 32 #include "components/metrics/metrics_hashes.h" | 32 #include "components/metrics/metrics_hashes.h" |
| 33 #include "components/nacl/common/nacl_switches.h" | 33 #include "components/nacl/common/nacl_switches.h" |
| 34 #include "components/offline_pages/offline_page_switches.h" | 34 #include "components/offline_pages/offline_page_switches.h" |
| 35 #include "components/omnibox/browser/omnibox_switches.h" | 35 #include "components/omnibox/browser/omnibox_switches.h" |
| 36 #include "components/plugins/common/plugins_switches.h" | 36 #include "components/plugins/common/plugins_switches.h" |
| 37 #include "components/proximity_auth/switches.h" | 37 #include "components/proximity_auth/switches.h" |
| 38 #include "components/search/search_switches.h" | 38 #include "components/search/search_switches.h" |
| 39 #include "components/sync_driver/sync_driver_switches.h" |
| 39 #include "components/version_info/version_info.h" | 40 #include "components/version_info/version_info.h" |
| 40 #include "content/public/browser/user_metrics.h" | 41 #include "content/public/browser/user_metrics.h" |
| 41 #include "media/base/media_switches.h" | 42 #include "media/base/media_switches.h" |
| 42 #include "ui/base/l10n/l10n_util.h" | 43 #include "ui/base/l10n/l10n_util.h" |
| 43 #include "ui/base/ui_base_switches.h" | 44 #include "ui/base/ui_base_switches.h" |
| 44 #include "ui/display/display_switches.h" | 45 #include "ui/display/display_switches.h" |
| 45 #include "ui/events/event_switches.h" | 46 #include "ui/events/event_switches.h" |
| 46 #include "ui/gfx/switches.h" | 47 #include "ui/gfx/switches.h" |
| 47 #include "ui/gl/gl_switches.h" | 48 #include "ui/gl/gl_switches.h" |
| 48 #include "ui/keyboard/keyboard_switches.h" | 49 #include "ui/keyboard/keyboard_switches.h" |
| (...skipping 2664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2713 } | 2714 } |
| 2714 | 2715 |
| 2715 const Experiment* GetExperiments(size_t* count) { | 2716 const Experiment* GetExperiments(size_t* count) { |
| 2716 *count = num_experiments; | 2717 *count = num_experiments; |
| 2717 return experiments; | 2718 return experiments; |
| 2718 } | 2719 } |
| 2719 | 2720 |
| 2720 } // namespace testing | 2721 } // namespace testing |
| 2721 | 2722 |
| 2722 } // namespace about_flags | 2723 } // namespace about_flags |
| OLD | NEW |