| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "extensions/common/switches.h" | 5 #include "extensions/common/switches.h" |
| 6 | 6 |
| 7 namespace extensions { | 7 namespace extensions { |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 // as --scripts-require-action=1. | 92 // as --scripts-require-action=1. |
| 93 const char kEnableScriptsRequireAction[] = "enable-scripts-require-action"; | 93 const char kEnableScriptsRequireAction[] = "enable-scripts-require-action"; |
| 94 | 94 |
| 95 // Makes component extensions appear in chrome://settings/extensions. | 95 // Makes component extensions appear in chrome://settings/extensions. |
| 96 const char kShowComponentExtensionOptions[] = | 96 const char kShowComponentExtensionOptions[] = |
| 97 "show-component-extension-options"; | 97 "show-component-extension-options"; |
| 98 | 98 |
| 99 // Adds the given extension ID to all the permission whitelists. | 99 // Adds the given extension ID to all the permission whitelists. |
| 100 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; | 100 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; |
| 101 | 101 |
| 102 // Pass launch source to platform apps. |
| 103 const char kTraceAppSource[] = "enable-trace-app-source"; |
| 104 |
| 102 } // namespace switches | 105 } // namespace switches |
| 103 | 106 |
| 104 } // namespace extensions | 107 } // namespace extensions |
| OLD | NEW |