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

Side by Side Diff: chrome/common/chrome_switches.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: removed IsActionBoxEnabled() 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/extension_switch_utils.h » ('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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 const char kEnableExperimentalExtensionApis[] = 515 const char kEnableExperimentalExtensionApis[] =
516 "enable-experimental-extension-apis"; 516 "enable-experimental-extension-apis";
517 517
518 // Enables logging for extension activity. 518 // Enables logging for extension activity.
519 const char kEnableExtensionActivityLogging[] = 519 const char kEnableExtensionActivityLogging[] =
520 "enable-extension-activity-logging"; 520 "enable-extension-activity-logging";
521 521
522 // Enables the extension activity UI. 522 // Enables the extension activity UI.
523 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui"; 523 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui";
524 524
525 // Enables to show extensions in an action box.
526 const char kEnableExtensionsInActionBox[] = "extensions-in-action-box";
527
525 // Enables experimental timeline API. 528 // Enables experimental timeline API.
526 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; 529 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api";
527 530
528 // Applies a new frameless window style to any dialog based on 531 // Applies a new frameless window style to any dialog based on
529 // ConstrainedWindowViews. 532 // ConstrainedWindowViews.
530 const char kEnableFramelessConstrainedDialogs[] = 533 const char kEnableFramelessConstrainedDialogs[] =
531 "enable-frameless-constrained-dialogs"; 534 "enable-frameless-constrained-dialogs";
532 535
533 // By default, cookies are not allowed on file://. They are needed for testing, 536 // By default, cookies are not allowed on file://. They are needed for testing,
534 // for example page cycler and layout tests. See bug 1157243. 537 // for example page cycler and layout tests. See bug 1157243.
(...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 1570
1568 // ----------------------------------------------------------------------------- 1571 // -----------------------------------------------------------------------------
1569 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1572 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1570 // 1573 //
1571 // You were going to just dump your switches here, weren't you? Instead, please 1574 // You were going to just dump your switches here, weren't you? Instead, please
1572 // put them in alphabetical order above, or in order inside the appropriate 1575 // put them in alphabetical order above, or in order inside the appropriate
1573 // ifdef at the bottom. The order should match the header. 1576 // ifdef at the bottom. The order should match the header.
1574 // ----------------------------------------------------------------------------- 1577 // -----------------------------------------------------------------------------
1575 1578
1576 } // namespace switches 1579 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/extension_switch_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698