Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1584)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 8353040: Remove 'enable lazy background pages' from about:flags (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "remove name and description strings" Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698