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

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

Issue 20593003: Move kEnableExperimentalExtensionApis switch to extensions/common/switches.cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 // Force-enables DNS probes on main frame DNS errors. (The user must still 551 // Force-enables DNS probes on main frame DNS errors. (The user must still
552 // opt in to "Use web service to resolve navigation errors".) 552 // opt in to "Use web service to resolve navigation errors".)
553 const char kEnableDnsProbes[] = "enable-dns-probes"; 553 const char kEnableDnsProbes[] = "enable-dns-probes";
554 554
555 // Enables extensions to be easily installed from sites other than the web 555 // Enables extensions to be easily installed from sites other than the web
556 // store. Without this flag, they can still be installed, but must be manually 556 // store. Without this flag, they can still be installed, but must be manually
557 // dragged onto chrome://extensions/. 557 // dragged onto chrome://extensions/.
558 const char kEasyOffStoreExtensionInstall[] = 558 const char kEasyOffStoreExtensionInstall[] =
559 "easy-off-store-extension-install"; 559 "easy-off-store-extension-install";
560 560
561 // Enables extension APIs that are in development.
562 const char kEnableExperimentalExtensionApis[] =
563 "enable-experimental-extension-apis";
564
565 // Enables logging for extension activity. 561 // Enables logging for extension activity.
566 const char kEnableExtensionActivityLogging[] = 562 const char kEnableExtensionActivityLogging[] =
567 "enable-extension-activity-logging"; 563 "enable-extension-activity-logging";
568 564
569 const char kEnableExtensionActivityLogTesting[] = 565 const char kEnableExtensionActivityLogTesting[] =
570 "enable-extension-activity-log-testing"; 566 "enable-extension-activity-log-testing";
571 567
572 // Enables or disables showing extensions in the action box. 568 // Enables or disables showing extensions in the action box.
573 const char kExtensionsInActionBox[] = "extensions-in-action-box"; 569 const char kExtensionsInActionBox[] = "extensions-in-action-box";
574 570
(...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after
1594 1590
1595 // ----------------------------------------------------------------------------- 1591 // -----------------------------------------------------------------------------
1596 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1592 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1597 // 1593 //
1598 // You were going to just dump your switches here, weren't you? Instead, please 1594 // You were going to just dump your switches here, weren't you? Instead, please
1599 // put them in alphabetical order above, or in order inside the appropriate 1595 // put them in alphabetical order above, or in order inside the appropriate
1600 // ifdef at the bottom. The order should match the header. 1596 // ifdef at the bottom. The order should match the header.
1601 // ----------------------------------------------------------------------------- 1597 // -----------------------------------------------------------------------------
1602 1598
1603 } // namespace switches 1599 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698