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

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

Issue 10827268: Added flag --extensions-in-action-box to split Action Box and Extensions in it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis) 353 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis)
354 }, 354 },
355 { 355 {
356 "action-box", 356 "action-box",
357 IDS_FLAGS_ACTION_BOX_NAME, 357 IDS_FLAGS_ACTION_BOX_NAME,
358 IDS_FLAGS_ACTION_BOX_DESCRIPTION, 358 IDS_FLAGS_ACTION_BOX_DESCRIPTION,
359 kOsAll, 359 kOsAll,
360 SINGLE_VALUE_TYPE(switches::kEnableActionBox), 360 SINGLE_VALUE_TYPE(switches::kEnableActionBox),
361 }, 361 },
362 { 362 {
363 "extensions-in-action-box",
364 IDS_FLAGS_EXTENSIONS_IN_ACTION_BOX_NAME,
365 IDS_FLAGS_EXTENSIONS_IN_ACTION_BOX_DESCRIPTION,
366 kOsAll,
367 SINGLE_VALUE_TYPE(switches::kEnableExtensionsInActionBox),
368 },
369 {
363 "script-badges", 370 "script-badges",
364 IDS_FLAGS_SCRIPT_BADGES_NAME, 371 IDS_FLAGS_SCRIPT_BADGES_NAME,
365 IDS_FLAGS_SCRIPT_BADGES_DESCRIPTION, 372 IDS_FLAGS_SCRIPT_BADGES_DESCRIPTION,
366 kOsAll, 373 kOsAll,
367 SINGLE_VALUE_TYPE(switches::kEnableScriptBadges), 374 SINGLE_VALUE_TYPE(switches::kEnableScriptBadges),
368 }, 375 },
369 { 376 {
370 "apps-new-install-bubble", 377 "apps-new-install-bubble",
371 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME, 378 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME,
372 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION, 379 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION,
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 } 1334 }
1328 1335
1329 const Experiment* GetExperiments(size_t* count) { 1336 const Experiment* GetExperiments(size_t* count) {
1330 *count = num_experiments; 1337 *count = num_experiments;
1331 return experiments; 1338 return experiments;
1332 } 1339 }
1333 1340
1334 } // namespace testing 1341 } // namespace testing
1335 1342
1336 } // namespace about_flags 1343 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698