| OLD | NEW |
| 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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 const char kEnableExperimentalExtensionApis[] = | 526 const char kEnableExperimentalExtensionApis[] = |
| 527 "enable-experimental-extension-apis"; | 527 "enable-experimental-extension-apis"; |
| 528 | 528 |
| 529 // Enables logging for extension activity. | 529 // Enables logging for extension activity. |
| 530 const char kEnableExtensionActivityLogging[] = | 530 const char kEnableExtensionActivityLogging[] = |
| 531 "enable-extension-activity-logging"; | 531 "enable-extension-activity-logging"; |
| 532 | 532 |
| 533 const char kEnableExtensionActivityLogTesting[] = | 533 const char kEnableExtensionActivityLogTesting[] = |
| 534 "enable-extension-activity-log-testing"; | 534 "enable-extension-activity-log-testing"; |
| 535 | 535 |
| 536 // Enables the extension activity UI. | |
| 537 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui"; | |
| 538 | |
| 539 // Enables or disables showing extensions in the action box. | 536 // Enables or disables showing extensions in the action box. |
| 540 const char kExtensionsInActionBox[] = "extensions-in-action-box"; | 537 const char kExtensionsInActionBox[] = "extensions-in-action-box"; |
| 541 | 538 |
| 542 // Enables or disables running extensions on chrome:// URLs. | 539 // Enables or disables running extensions on chrome:// URLs. |
| 543 // Extensions still need to explicitly request access to chrome:// URLs in the | 540 // Extensions still need to explicitly request access to chrome:// URLs in the |
| 544 // manifest. | 541 // manifest. |
| 545 const char kExtensionsOnChromeURLs[] = "extensions-on-chrome-urls"; | 542 const char kExtensionsOnChromeURLs[] = "extensions-on-chrome-urls"; |
| 546 | 543 |
| 547 // By default, cookies are not allowed on file://. They are needed for testing, | 544 // By default, cookies are not allowed on file://. They are needed for testing, |
| 548 // for example page cycler and layout tests. See bug 1157243. | 545 // for example page cycler and layout tests. See bug 1157243. |
| (...skipping 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1592 | 1589 |
| 1593 // ----------------------------------------------------------------------------- | 1590 // ----------------------------------------------------------------------------- |
| 1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1591 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1595 // | 1592 // |
| 1596 // You were going to just dump your switches here, weren't you? Instead, please | 1593 // You were going to just dump your switches here, weren't you? Instead, please |
| 1597 // put them in alphabetical order above, or in order inside the appropriate | 1594 // put them in alphabetical order above, or in order inside the appropriate |
| 1598 // ifdef at the bottom. The order should match the header. | 1595 // ifdef at the bottom. The order should match the header. |
| 1599 // ----------------------------------------------------------------------------- | 1596 // ----------------------------------------------------------------------------- |
| 1600 | 1597 |
| 1601 } // namespace switches | 1598 } // namespace switches |
| OLD | NEW |