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

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

Issue 23503042: Initial WebUI for DOM Distiller. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 3 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 // Chrome OS apps list. 559 // Chrome OS apps list.
560 const char kEnableContacts[] = "enable-contacts"; 560 const char kEnableContacts[] = "enable-contacts";
561 561
562 // If true devtools experimental settings are enabled. 562 // If true devtools experimental settings are enabled.
563 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 563 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
564 564
565 // Force-enables DNS probes on main frame DNS errors. (The user must still 565 // Force-enables DNS probes on main frame DNS errors. (The user must still
566 // opt in to "Use web service to resolve navigation errors".) 566 // opt in to "Use web service to resolve navigation errors".)
567 const char kEnableDnsProbes[] = "enable-dns-probes"; 567 const char kEnableDnsProbes[] = "enable-dns-probes";
568 568
569 // Enables the DOM distiller.
570 const char kEnableDomDistiller[] = "enable-dom-distiller";
571
569 // Enables extensions to be easily installed from sites other than the web 572 // Enables extensions to be easily installed from sites other than the web
570 // store. Without this flag, they can still be installed, but must be manually 573 // store. Without this flag, they can still be installed, but must be manually
571 // dragged onto chrome://extensions/. 574 // dragged onto chrome://extensions/.
572 const char kEasyOffStoreExtensionInstall[] = 575 const char kEasyOffStoreExtensionInstall[] =
573 "easy-off-store-extension-install"; 576 "easy-off-store-extension-install";
574 577
575 // Enables logging for extension activity. 578 // Enables logging for extension activity.
576 const char kEnableExtensionActivityLogging[] = 579 const char kEnableExtensionActivityLogging[] =
577 "enable-extension-activity-logging"; 580 "enable-extension-activity-logging";
578 581
(...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after
1618 1621
1619 // ----------------------------------------------------------------------------- 1622 // -----------------------------------------------------------------------------
1620 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1621 // 1624 //
1622 // You were going to just dump your switches here, weren't you? Instead, please 1625 // You were going to just dump your switches here, weren't you? Instead, please
1623 // put them in alphabetical order above, or in order inside the appropriate 1626 // put them in alphabetical order above, or in order inside the appropriate
1624 // ifdef at the bottom. The order should match the header. 1627 // ifdef at the bottom. The order should match the header.
1625 // ----------------------------------------------------------------------------- 1628 // -----------------------------------------------------------------------------
1626 1629
1627 } // namespace switches 1630 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698