OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
121 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintProxy) | 121 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintProxy) |
122 }, | 122 }, |
123 { | 123 { |
124 "crxless-web-apps", | 124 "crxless-web-apps", |
125 IDS_FLAGS_CRXLESS_WEB_APPS_NAME, | 125 IDS_FLAGS_CRXLESS_WEB_APPS_NAME, |
126 IDS_FLAGS_CRXLESS_WEB_APPS_DESCRIPTION, | 126 IDS_FLAGS_CRXLESS_WEB_APPS_DESCRIPTION, |
127 kOsAll, | 127 kOsAll, |
128 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) | 128 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) |
129 }, | 129 }, |
130 { | 130 { |
131 "lazy-background-pages", | |
132 IDS_FLAGS_LAZY_BACKGROUND_PAGES_NAME, | |
133 IDS_FLAGS_LAZY_BACKGROUND_PAGES_DESCRIPTION, | |
Aaron Boodman
2011/10/27 19:29:50
Remove the string too?
Tessa MacDuff
2011/10/28 18:36:45
Done.
| |
134 kOsAll, | |
135 SINGLE_VALUE_TYPE(switches::kEnableLazyBackgroundPages) | |
136 }, | |
137 { | |
138 "ignore-gpu-blacklist", | 131 "ignore-gpu-blacklist", |
139 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, | 132 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, |
140 IDS_FLAGS_IGNORE_GPU_BLACKLIST_DESCRIPTION, | 133 IDS_FLAGS_IGNORE_GPU_BLACKLIST_DESCRIPTION, |
141 kOsAll, | 134 kOsAll, |
142 SINGLE_VALUE_TYPE(switches::kIgnoreGpuBlacklist) | 135 SINGLE_VALUE_TYPE(switches::kIgnoreGpuBlacklist) |
143 }, | 136 }, |
144 { | 137 { |
145 "force-compositing-mode-2", | 138 "force-compositing-mode-2", |
146 IDS_FLAGS_FORCE_COMPOSITING_MODE_NAME, | 139 IDS_FLAGS_FORCE_COMPOSITING_MODE_NAME, |
147 IDS_FLAGS_FORCE_COMPOSITING_MODE_DESCRIPTION, | 140 IDS_FLAGS_FORCE_COMPOSITING_MODE_DESCRIPTION, |
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
865 } | 858 } |
866 | 859 |
867 const Experiment* GetExperiments(size_t* count) { | 860 const Experiment* GetExperiments(size_t* count) { |
868 *count = num_experiments; | 861 *count = num_experiments; |
869 return experiments; | 862 return experiments; |
870 } | 863 } |
871 | 864 |
872 } // namespace testing | 865 } // namespace testing |
873 | 866 |
874 } // namespace about_flags | 867 } // namespace about_flags |
OLD | NEW |