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

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

Issue 9293008: Move click-to-play out of chrome://flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis) 266 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis)
267 }, 267 },
268 { 268 {
269 "apps-new-install-bubble", 269 "apps-new-install-bubble",
270 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME, 270 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME,
271 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION, 271 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION,
272 kOsAll, 272 kOsAll,
273 SINGLE_VALUE_TYPE(switches::kAppsNewInstallBubble) 273 SINGLE_VALUE_TYPE(switches::kAppsNewInstallBubble)
274 }, 274 },
275 { 275 {
276 "click-to-play", // FLAGS:RECORD_UMA
277 IDS_FLAGS_CLICK_TO_PLAY_NAME,
278 IDS_FLAGS_CLICK_TO_PLAY_DESCRIPTION,
279 kOsAll,
280 SINGLE_VALUE_TYPE(switches::kEnableClickToPlay)
281 },
282 {
283 "disable-hyperlink-auditing", 276 "disable-hyperlink-auditing",
284 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, 277 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME,
285 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, 278 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION,
286 kOsAll, 279 kOsAll,
287 SINGLE_VALUE_TYPE(switches::kNoPings) 280 SINGLE_VALUE_TYPE(switches::kNoPings)
288 }, 281 },
289 { 282 {
290 "experimental-location-features", // FLAGS:RECORD_UMA 283 "experimental-location-features", // FLAGS:RECORD_UMA
291 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_NAME, 284 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_NAME,
292 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_DESCRIPTION, 285 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_DESCRIPTION,
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 } 996 }
1004 997
1005 const Experiment* GetExperiments(size_t* count) { 998 const Experiment* GetExperiments(size_t* count) {
1006 *count = num_experiments; 999 *count = num_experiments;
1007 return experiments; 1000 return experiments;
1008 } 1001 }
1009 1002
1010 } // namespace testing 1003 } // namespace testing
1011 1004
1012 } // namespace about_flags 1005 } // 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