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

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

Issue 24891002: Initial WebUI extension for enhanced bookmarks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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/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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 const char kEnableDeviceDiscoveryNotifications[] = 581 const char kEnableDeviceDiscoveryNotifications[] =
582 "enable-device-discovery-notifications"; 582 "enable-device-discovery-notifications";
583 583
584 // Force-enables DNS probes on main frame DNS errors. (The user must still 584 // Force-enables DNS probes on main frame DNS errors. (The user must still
585 // opt in to "Use web service to resolve navigation errors".) 585 // opt in to "Use web service to resolve navigation errors".)
586 const char kEnableDnsProbes[] = "enable-dns-probes"; 586 const char kEnableDnsProbes[] = "enable-dns-probes";
587 587
588 // Enables the DOM distiller. 588 // Enables the DOM distiller.
589 const char kEnableDomDistiller[] = "enable-dom-distiller"; 589 const char kEnableDomDistiller[] = "enable-dom-distiller";
590 590
591 // Enables enhanced bookmarks.
592 const char kEnableEnhancedBookmarks[] = "enable-enhanced-bookmarks";
593
591 // Enables extensions to be easily installed from sites other than the web 594 // Enables extensions to be easily installed from sites other than the web
592 // store. Without this flag, they can still be installed, but must be manually 595 // store. Without this flag, they can still be installed, but must be manually
593 // dragged onto chrome://extensions/. 596 // dragged onto chrome://extensions/.
594 const char kEasyOffStoreExtensionInstall[] = 597 const char kEasyOffStoreExtensionInstall[] =
595 "easy-off-store-extension-install"; 598 "easy-off-store-extension-install";
596 599
597 // Enables logging for extension activity. 600 // Enables logging for extension activity.
598 const char kEnableExtensionActivityLogging[] = 601 const char kEnableExtensionActivityLogging[] =
599 "enable-extension-activity-logging"; 602 "enable-extension-activity-logging";
600 603
(...skipping 1040 matching lines...) Expand 10 before | Expand all | Expand 10 after
1641 1644
1642 // ----------------------------------------------------------------------------- 1645 // -----------------------------------------------------------------------------
1643 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1646 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1644 // 1647 //
1645 // You were going to just dump your switches here, weren't you? Instead, please 1648 // You were going to just dump your switches here, weren't you? Instead, please
1646 // put them in alphabetical order above, or in order inside the appropriate 1649 // put them in alphabetical order above, or in order inside the appropriate
1647 // ifdef at the bottom. The order should match the header. 1650 // ifdef at the bottom. The order should match the header.
1648 // ----------------------------------------------------------------------------- 1651 // -----------------------------------------------------------------------------
1649 1652
1650 } // namespace switches 1653 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698