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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintProxy) | 120 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintProxy) |
121 }, | 121 }, |
122 { | 122 { |
123 "crxless-web-apps", | 123 "crxless-web-apps", |
124 IDS_FLAGS_CRXLESS_WEB_APPS_NAME, | 124 IDS_FLAGS_CRXLESS_WEB_APPS_NAME, |
125 IDS_FLAGS_CRXLESS_WEB_APPS_DESCRIPTION, | 125 IDS_FLAGS_CRXLESS_WEB_APPS_DESCRIPTION, |
126 kOsAll, | 126 kOsAll, |
127 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) | 127 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) |
128 }, | 128 }, |
129 { | 129 { |
| 130 "lazy-background-pages", |
| 131 IDS_FLAGS_LAZY_BACKGROUND_PAGES_NAME, |
| 132 IDS_FLAGS_LAZY_BACKGROUND_PAGES_DESCRIPTION, |
| 133 kOsAll, |
| 134 SINGLE_VALUE_TYPE(switches::kEnableLazyBackgroundPages) |
| 135 }, |
| 136 { |
130 "ignore-gpu-blacklist", | 137 "ignore-gpu-blacklist", |
131 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, | 138 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, |
132 IDS_FLAGS_IGNORE_GPU_BLACKLIST_DESCRIPTION, | 139 IDS_FLAGS_IGNORE_GPU_BLACKLIST_DESCRIPTION, |
133 kOsAll, | 140 kOsAll, |
134 SINGLE_VALUE_TYPE(switches::kIgnoreGpuBlacklist) | 141 SINGLE_VALUE_TYPE(switches::kIgnoreGpuBlacklist) |
135 }, | 142 }, |
136 { | 143 { |
137 "force-compositing-mode-2", | 144 "force-compositing-mode-2", |
138 IDS_FLAGS_FORCE_COMPOSITING_MODE_NAME, | 145 IDS_FLAGS_FORCE_COMPOSITING_MODE_NAME, |
139 IDS_FLAGS_FORCE_COMPOSITING_MODE_DESCRIPTION, | 146 IDS_FLAGS_FORCE_COMPOSITING_MODE_DESCRIPTION, |
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 } | 819 } |
813 | 820 |
814 const Experiment* GetExperiments(size_t* count) { | 821 const Experiment* GetExperiments(size_t* count) { |
815 *count = num_experiments; | 822 *count = num_experiments; |
816 return experiments; | 823 return experiments; |
817 } | 824 } |
818 | 825 |
819 } // namespace testing | 826 } // namespace testing |
820 | 827 |
821 } // namespace about_flags | 828 } // namespace about_flags |
OLD | NEW |