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, | |
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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 } | 865 } |
873 | 866 |
874 const Experiment* GetExperiments(size_t* count) { | 867 const Experiment* GetExperiments(size_t* count) { |
875 *count = num_experiments; | 868 *count = num_experiments; |
876 return experiments; | 869 return experiments; |
877 } | 870 } |
878 | 871 |
879 } // namespace testing | 872 } // namespace testing |
880 | 873 |
881 } // namespace about_flags | 874 } // namespace about_flags |
OLD | NEW |