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 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1004 kOsCrOS, | 1004 kOsCrOS, |
1005 SINGLE_VALUE_TYPE(chromeos::switches::kEnableScreensaverExtensions) | 1005 SINGLE_VALUE_TYPE(chromeos::switches::kEnableScreensaverExtensions) |
1006 }, | 1006 }, |
1007 { | 1007 { |
1008 "no-discard-tabs", | 1008 "no-discard-tabs", |
1009 IDS_FLAGS_NO_DISCARD_TABS_NAME, | 1009 IDS_FLAGS_NO_DISCARD_TABS_NAME, |
1010 IDS_FLAGS_NO_DISCARD_TABS_DESCRIPTION, | 1010 IDS_FLAGS_NO_DISCARD_TABS_DESCRIPTION, |
1011 kOsCrOS, | 1011 kOsCrOS, |
1012 SINGLE_VALUE_TYPE(chromeos::switches::kNoDiscardTabs) | 1012 SINGLE_VALUE_TYPE(chromeos::switches::kNoDiscardTabs) |
1013 }, | 1013 }, |
| 1014 { |
| 1015 "ash-enable-docked-windows", |
| 1016 IDS_FLAGS_DOCKED_WINDOWS_NAME, |
| 1017 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, |
| 1018 kOsCrOS, |
| 1019 SINGLE_VALUE_TYPE(ash::switches::kAshEnableDockedWindows) |
| 1020 }, |
1014 #endif | 1021 #endif |
1015 { | 1022 { |
1016 "enable-download-resumption", | 1023 "enable-download-resumption", |
1017 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, | 1024 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, |
1018 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, | 1025 IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_DESCRIPTION, |
1019 kOsDesktop, | 1026 kOsDesktop, |
1020 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) | 1027 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) |
1021 }, | 1028 }, |
1022 { | 1029 { |
1023 "allow-nacl-socket-api", | 1030 "allow-nacl-socket-api", |
(...skipping 1089 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2113 } | 2120 } |
2114 | 2121 |
2115 const Experiment* GetExperiments(size_t* count) { | 2122 const Experiment* GetExperiments(size_t* count) { |
2116 *count = num_experiments; | 2123 *count = num_experiments; |
2117 return experiments; | 2124 return experiments; |
2118 } | 2125 } |
2119 | 2126 |
2120 } // namespace testing | 2127 } // namespace testing |
2121 | 2128 |
2122 } // namespace about_flags | 2129 } // namespace about_flags |
OLD | NEW |