| 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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 const char kEasyOffStoreExtensionInstall[] = "easy-off-store-extension-install"; | 481 const char kEasyOffStoreExtensionInstall[] = "easy-off-store-extension-install"; |
| 482 | 482 |
| 483 // Enables extension APIs that are in development. | 483 // Enables extension APIs that are in development. |
| 484 const char kEnableExperimentalExtensionApis[] = | 484 const char kEnableExperimentalExtensionApis[] = |
| 485 "enable-experimental-extension-apis"; | 485 "enable-experimental-extension-apis"; |
| 486 | 486 |
| 487 // Enables logging for extension activity. | 487 // Enables logging for extension activity. |
| 488 const char kEnableExtensionActivityLogging[] = | 488 const char kEnableExtensionActivityLogging[] = |
| 489 "enable-extension-activity-logging"; | 489 "enable-extension-activity-logging"; |
| 490 | 490 |
| 491 const char kEnableExtensionActivityLogTesting[] = |
| 492 "enable-extension-activity-log-testing"; |
| 493 |
| 491 // Enables the extension activity UI. | 494 // Enables the extension activity UI. |
| 492 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui"; | 495 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui"; |
| 493 | 496 |
| 494 // Enables or disables showing extensions in the action box. | 497 // Enables or disables showing extensions in the action box. |
| 495 const char kExtensionsInActionBox[] = "extensions-in-action-box"; | 498 const char kExtensionsInActionBox[] = "extensions-in-action-box"; |
| 496 | 499 |
| 497 // By default, cookies are not allowed on file://. They are needed for testing, | 500 // By default, cookies are not allowed on file://. They are needed for testing, |
| 498 // for example page cycler and layout tests. See bug 1157243. | 501 // for example page cycler and layout tests. See bug 1157243. |
| 499 const char kEnableFileCookies[] = "enable-file-cookies"; | 502 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 500 | 503 |
| (...skipping 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1663 | 1666 |
| 1664 // ----------------------------------------------------------------------------- | 1667 // ----------------------------------------------------------------------------- |
| 1665 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1668 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1666 // | 1669 // |
| 1667 // You were going to just dump your switches here, weren't you? Instead, please | 1670 // You were going to just dump your switches here, weren't you? Instead, please |
| 1668 // put them in alphabetical order above, or in order inside the appropriate | 1671 // put them in alphabetical order above, or in order inside the appropriate |
| 1669 // ifdef at the bottom. The order should match the header. | 1672 // ifdef at the bottom. The order should match the header. |
| 1670 // ----------------------------------------------------------------------------- | 1673 // ----------------------------------------------------------------------------- |
| 1671 | 1674 |
| 1672 } // namespace switches | 1675 } // namespace switches |
| OLD | NEW |