| 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 10 matching lines...) Expand all Loading... |
| 21 #include "chrome/browser/flags_storage.h" | 21 #include "chrome/browser/flags_storage.h" |
| 22 #include "chrome/common/chrome_content_client.h" | 22 #include "chrome/common/chrome_content_client.h" |
| 23 #include "chrome/common/chrome_switches.h" | 23 #include "chrome/common/chrome_switches.h" |
| 24 #include "chrome/common/chrome_version_info.h" | 24 #include "chrome/common/chrome_version_info.h" |
| 25 #include "chrome/grit/chromium_strings.h" | 25 #include "chrome/grit/chromium_strings.h" |
| 26 #include "chrome/grit/generated_resources.h" | 26 #include "chrome/grit/generated_resources.h" |
| 27 #include "chrome/grit/google_chrome_strings.h" | 27 #include "chrome/grit/google_chrome_strings.h" |
| 28 #include "components/autofill/core/common/autofill_switches.h" | 28 #include "components/autofill/core/common/autofill_switches.h" |
| 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/metrics/metrics_hashes.h" | 32 #include "components/metrics/metrics_hashes.h" |
| 32 #include "components/nacl/common/nacl_switches.h" | 33 #include "components/nacl/common/nacl_switches.h" |
| 33 #include "components/omnibox/browser/omnibox_switches.h" | 34 #include "components/omnibox/browser/omnibox_switches.h" |
| 34 #include "components/plugins/common/plugins_switches.h" | 35 #include "components/plugins/common/plugins_switches.h" |
| 35 #include "components/proximity_auth/switches.h" | 36 #include "components/proximity_auth/switches.h" |
| 36 #include "components/search/search_switches.h" | 37 #include "components/search/search_switches.h" |
| 37 #include "content/public/browser/user_metrics.h" | 38 #include "content/public/browser/user_metrics.h" |
| 38 #include "media/base/media_switches.h" | 39 #include "media/base/media_switches.h" |
| 39 #include "ui/base/l10n/l10n_util.h" | 40 #include "ui/base/l10n/l10n_util.h" |
| 40 #include "ui/base/ui_base_switches.h" | 41 #include "ui/base/ui_base_switches.h" |
| (...skipping 2671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2712 } | 2713 } |
| 2713 | 2714 |
| 2714 const Experiment* GetExperiments(size_t* count) { | 2715 const Experiment* GetExperiments(size_t* count) { |
| 2715 *count = num_experiments; | 2716 *count = num_experiments; |
| 2716 return experiments; | 2717 return experiments; |
| 2717 } | 2718 } |
| 2718 | 2719 |
| 2719 } // namespace testing | 2720 } // namespace testing |
| 2720 | 2721 |
| 2721 } // namespace about_flags | 2722 } // namespace about_flags |
| OLD | NEW |