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/manifest_constants.h" | 5 #include "extensions/common/manifest_constants.h" |
6 | 6 |
7 namespace extensions { | 7 namespace extensions { |
8 | 8 |
9 namespace manifest_keys { | 9 namespace manifest_keys { |
10 | 10 |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 const char kTtsVoicesLang[] = "lang"; | 141 const char kTtsVoicesLang[] = "lang"; |
142 const char kTtsVoicesVoiceName[] = "voice_name"; | 142 const char kTtsVoicesVoiceName[] = "voice_name"; |
143 const char kType[] = "type"; | 143 const char kType[] = "type"; |
144 const char kUpdateURL[] = "update_url"; | 144 const char kUpdateURL[] = "update_url"; |
145 const char kVersion[] = "version"; | 145 const char kVersion[] = "version"; |
146 const char kWebAccessibleResources[] = "web_accessible_resources"; | 146 const char kWebAccessibleResources[] = "web_accessible_resources"; |
147 const char kWebURLs[] = "app.urls"; | 147 const char kWebURLs[] = "app.urls"; |
148 | 148 |
149 } // namespace manifest_keys | 149 } // namespace manifest_keys |
150 | 150 |
| 151 namespace manifest_errors { |
| 152 |
| 153 const char kPermissionUnknownOrMalformed[] = |
| 154 "Permission '*' is unknown or URL pattern is malformed."; |
| 155 const char kUnrecognizedManifestKey[] = "Unrecognized manifest key '*'."; |
| 156 |
| 157 } // namespace manifest_errors |
| 158 |
151 } // namespace extensions | 159 } // namespace extensions |
OLD | NEW |