| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 // Whether to force developer mode extensions highlighting. | 51 // Whether to force developer mode extensions highlighting. |
| 52 const char kForceDevModeHighlighting[] = "force-dev-mode-highlighting"; | 52 const char kForceDevModeHighlighting[] = "force-dev-mode-highlighting"; |
| 53 | 53 |
| 54 // Enables setting global commands through the Extensions Commands API. | 54 // Enables setting global commands through the Extensions Commands API. |
| 55 const char kGlobalCommands[] = "global-commands"; | 55 const char kGlobalCommands[] = "global-commands"; |
| 56 | 56 |
| 57 // Makes component extensions appear in chrome://settings/extensions. | 57 // Makes component extensions appear in chrome://settings/extensions. |
| 58 const char kShowComponentExtensionOptions[] = | 58 const char kShowComponentExtensionOptions[] = |
| 59 "show-component-extension-options"; | 59 "show-component-extension-options"; |
| 60 | 60 |
| 61 // Adds the given extension ID to all the permission whitelists. |
| 62 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; |
| 63 |
| 61 } // namespace switches | 64 } // namespace switches |
| 62 | 65 |
| 63 } // namespace extensions | 66 } // namespace extensions |
| OLD | NEW |