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

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

Issue 105723002: Add the scheme chrome-distiller:// and hook up data source. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implement as data source instead. Also rebased across thousands of CLs. Created 6 years, 11 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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 // Chrome OS apps list. 612 // Chrome OS apps list.
613 const char kEnableContacts[] = "enable-contacts"; 613 const char kEnableContacts[] = "enable-contacts";
614 614
615 // If true devtools experimental settings are enabled. 615 // If true devtools experimental settings are enabled.
616 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 616 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
617 617
618 // Enable device discovery notifications. 618 // Enable device discovery notifications.
619 const char kEnableDeviceDiscoveryNotifications[] = 619 const char kEnableDeviceDiscoveryNotifications[] =
620 "enable-device-discovery-notifications"; 620 "enable-device-discovery-notifications";
621 621
622 // Enables the DOM distiller.
623 const char kEnableDomDistiller[] = "enable-dom-distiller";
624
625 // Enable Enhanced Bookmarks. 622 // Enable Enhanced Bookmarks.
626 const char kEnableEnhancedBookmarks[] = "enable-enhanced-bookmarks"; 623 const char kEnableEnhancedBookmarks[] = "enable-enhanced-bookmarks";
627 624
628 // Enables experimentation with ephemeral apps, which are launched without 625 // Enables experimentation with ephemeral apps, which are launched without
629 // installing in Chrome. 626 // installing in Chrome.
630 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; 627 const char kEnableEphemeralApps[] = "enable-ephemeral-apps";
631 628
632 // Enables logging for extension activity. 629 // Enables logging for extension activity.
633 const char kEnableExtensionActivityLogging[] = 630 const char kEnableExtensionActivityLogging[] =
634 "enable-extension-activity-logging"; 631 "enable-extension-activity-logging";
(...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
1665 1662
1666 // ----------------------------------------------------------------------------- 1663 // -----------------------------------------------------------------------------
1667 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1664 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1668 // 1665 //
1669 // You were going to just dump your switches here, weren't you? Instead, please 1666 // You were going to just dump your switches here, weren't you? Instead, please
1670 // put them in alphabetical order above, or in order inside the appropriate 1667 // put them in alphabetical order above, or in order inside the appropriate
1671 // ifdef at the bottom. The order should match the header. 1668 // ifdef at the bottom. The order should match the header.
1672 // ----------------------------------------------------------------------------- 1669 // -----------------------------------------------------------------------------
1673 1670
1674 } // namespace switches 1671 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698