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 <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
899 { | 899 { |
900 "enable-tab-capture", | 900 "enable-tab-capture", |
901 IDS_ENABLE_TAB_CAPTURE_NAME, | 901 IDS_ENABLE_TAB_CAPTURE_NAME, |
902 IDS_ENABLE_TAB_CAPTURE_DESCRIPTION, | 902 IDS_ENABLE_TAB_CAPTURE_DESCRIPTION, |
903 kOsWin | kOsMac | kOsLinux | kOsCrOS, | 903 kOsWin | kOsMac | kOsLinux | kOsCrOS, |
904 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(switches::kTabCapture, "1", | 904 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(switches::kTabCapture, "1", |
905 switches::kTabCapture, "0") | 905 switches::kTabCapture, "0") |
906 }, | 906 }, |
907 #if defined(OS_CHROMEOS) | 907 #if defined(OS_CHROMEOS) |
908 { | 908 { |
| 909 "ash-use-alt-shelf", |
| 910 IDS_FLAGS_ALTERNATE_SHELF_LAYOUT_NAME, |
| 911 IDS_FLAGS_ALTERNATE_SHELF_LAYOUT_DESCRIPTION, |
| 912 kOsCrOS, |
| 913 SINGLE_VALUE_TYPE(ash::switches::kAshUseAlternateShelfLayout) |
| 914 }, |
| 915 { |
909 "enable-background-loader", | 916 "enable-background-loader", |
910 IDS_ENABLE_BACKLOADER_NAME, | 917 IDS_ENABLE_BACKLOADER_NAME, |
911 IDS_ENABLE_BACKLOADER_DESCRIPTION, | 918 IDS_ENABLE_BACKLOADER_DESCRIPTION, |
912 kOsCrOS, | 919 kOsCrOS, |
913 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) | 920 SINGLE_VALUE_TYPE(chromeos::switches::kEnableBackgroundLoader) |
914 }, | 921 }, |
915 { | 922 { |
916 "enable-bezel-touch", | 923 "enable-bezel-touch", |
917 IDS_ENABLE_BEZEL_TOUCH_NAME, | 924 IDS_ENABLE_BEZEL_TOUCH_NAME, |
918 IDS_ENABLE_BEZEL_TOUCH_DESCRIPTION, | 925 IDS_ENABLE_BEZEL_TOUCH_DESCRIPTION, |
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2015 } | 2022 } |
2016 | 2023 |
2017 const Experiment* GetExperiments(size_t* count) { | 2024 const Experiment* GetExperiments(size_t* count) { |
2018 *count = num_experiments; | 2025 *count = num_experiments; |
2019 return experiments; | 2026 return experiments; |
2020 } | 2027 } |
2021 | 2028 |
2022 } // namespace testing | 2029 } // namespace testing |
2023 | 2030 |
2024 } // namespace about_flags | 2031 } // namespace about_flags |
OLD | NEW |