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

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

Issue 9293010: Merge 119773 - Move click-to-play out of chrome://flags. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/963/src
Patch Set: '' Created 8 years, 10 months 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 | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis) 219 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis)
220 }, 220 },
221 { 221 {
222 "apps-new-install-bubble", 222 "apps-new-install-bubble",
223 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME, 223 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME,
224 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION, 224 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION,
225 kOsAll, 225 kOsAll,
226 SINGLE_VALUE_TYPE(switches::kAppsNewInstallBubble) 226 SINGLE_VALUE_TYPE(switches::kAppsNewInstallBubble)
227 }, 227 },
228 { 228 {
229 "click-to-play", // FLAGS:RECORD_UMA
230 IDS_FLAGS_CLICK_TO_PLAY_NAME,
231 IDS_FLAGS_CLICK_TO_PLAY_DESCRIPTION,
232 kOsAll,
233 SINGLE_VALUE_TYPE(switches::kEnableClickToPlay)
234 },
235 {
236 "disable-hyperlink-auditing", 229 "disable-hyperlink-auditing",
237 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, 230 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME,
238 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, 231 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION,
239 kOsAll, 232 kOsAll,
240 SINGLE_VALUE_TYPE(switches::kNoPings) 233 SINGLE_VALUE_TYPE(switches::kNoPings)
241 }, 234 },
242 { 235 {
243 "experimental-location-features", // FLAGS:RECORD_UMA 236 "experimental-location-features", // FLAGS:RECORD_UMA
244 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_NAME, 237 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_NAME,
245 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_DESCRIPTION, 238 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_DESCRIPTION,
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 } 851 }
859 852
860 const Experiment* GetExperiments(size_t* count) { 853 const Experiment* GetExperiments(size_t* count) {
861 *count = num_experiments; 854 *count = num_experiments;
862 return experiments; 855 return experiments;
863 } 856 }
864 857
865 } // namespace testing 858 } // namespace testing
866 859
867 } // namespace about_flags 860 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698