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

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: Rebased 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 // Chrome OS apps list. 587 // Chrome OS apps list.
588 const char kEnableContacts[] = "enable-contacts"; 588 const char kEnableContacts[] = "enable-contacts";
589 589
590 // If true devtools experimental settings are enabled. 590 // If true devtools experimental settings are enabled.
591 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 591 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
592 592
593 // Enable device discovery notifications. 593 // Enable device discovery notifications.
594 const char kEnableDeviceDiscoveryNotifications[] = 594 const char kEnableDeviceDiscoveryNotifications[] =
595 "enable-device-discovery-notifications"; 595 "enable-device-discovery-notifications";
596 596
597 // Enables the DOM distiller.
598 const char kEnableDomDistiller[] = "enable-dom-distiller";
599
600 // Enable Enhanced Bookmarks. 597 // Enable Enhanced Bookmarks.
601 const char kEnableEnhancedBookmarks[] = "enable-enhanced-bookmarks"; 598 const char kEnableEnhancedBookmarks[] = "enable-enhanced-bookmarks";
602 599
603 // Enables experimentation with ephemeral apps, which are launched without 600 // Enables experimentation with ephemeral apps, which are launched without
604 // installing in Chrome. 601 // installing in Chrome.
605 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; 602 const char kEnableEphemeralApps[] = "enable-ephemeral-apps";
606 603
607 // Enables logging for extension activity. 604 // Enables logging for extension activity.
608 const char kEnableExtensionActivityLogging[] = 605 const char kEnableExtensionActivityLogging[] =
609 "enable-extension-activity-logging"; 606 "enable-extension-activity-logging";
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
1664 1661
1665 // ----------------------------------------------------------------------------- 1662 // -----------------------------------------------------------------------------
1666 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1663 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1667 // 1664 //
1668 // You were going to just dump your switches here, weren't you? Instead, please 1665 // You were going to just dump your switches here, weren't you? Instead, please
1669 // put them in alphabetical order above, or in order inside the appropriate 1666 // put them in alphabetical order above, or in order inside the appropriate
1670 // ifdef at the bottom. The order should match the header. 1667 // ifdef at the bottom. The order should match the header.
1671 // ----------------------------------------------------------------------------- 1668 // -----------------------------------------------------------------------------
1672 1669
1673 } // namespace switches 1670 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698