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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 68173031: Added enhanced bookmarks extension as an external component extension (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 // If true devtools experimental settings are enabled. 580 // If true devtools experimental settings are enabled.
581 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 581 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
582 582
583 // Enable device discovery notifications. 583 // Enable device discovery notifications.
584 const char kEnableDeviceDiscoveryNotifications[] = 584 const char kEnableDeviceDiscoveryNotifications[] =
585 "enable-device-discovery-notifications"; 585 "enable-device-discovery-notifications";
586 586
587 // Enables the DOM distiller. 587 // Enables the DOM distiller.
588 const char kEnableDomDistiller[] = "enable-dom-distiller"; 588 const char kEnableDomDistiller[] = "enable-dom-distiller";
589 589
590 // Enable Enhanced Bookmarks.
591 const char kEnableEnhancedBookmarks[] = "enable-enhanced-bookmarks";
592
590 // Enables experimentation with ephemeral apps, which are launched without 593 // Enables experimentation with ephemeral apps, which are launched without
591 // installing in Chrome. 594 // installing in Chrome.
592 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; 595 const char kEnableEphemeralApps[] = "enable-ephemeral-apps";
593 596
594 // Enables logging for extension activity. 597 // Enables logging for extension activity.
595 const char kEnableExtensionActivityLogging[] = 598 const char kEnableExtensionActivityLogging[] =
596 "enable-extension-activity-logging"; 599 "enable-extension-activity-logging";
597 600
598 const char kEnableExtensionActivityLogTesting[] = 601 const char kEnableExtensionActivityLogTesting[] =
599 "enable-extension-activity-log-testing"; 602 "enable-extension-activity-log-testing";
(...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
1630 1633
1631 // ----------------------------------------------------------------------------- 1634 // -----------------------------------------------------------------------------
1632 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1635 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1633 // 1636 //
1634 // You were going to just dump your switches here, weren't you? Instead, please 1637 // You were going to just dump your switches here, weren't you? Instead, please
1635 // put them in alphabetical order above, or in order inside the appropriate 1638 // put them in alphabetical order above, or in order inside the appropriate
1636 // ifdef at the bottom. The order should match the header. 1639 // ifdef at the bottom. The order should match the header.
1637 // ----------------------------------------------------------------------------- 1640 // -----------------------------------------------------------------------------
1638 1641
1639 } // namespace switches 1642 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698