OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/extensions/extension_constants.h" | 5 #include "chrome/common/extensions/extension_constants.h" |
6 | 6 |
7 namespace extension_manifest_keys { | 7 namespace extension_manifest_keys { |
8 | 8 |
9 const char* kAllFrames = "all_frames"; | 9 const char* kAllFrames = "all_frames"; |
10 const char* kApp = "app"; | 10 const char* kApp = "app"; |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 const char* kInvalidPermissionScheme = | 222 const char* kInvalidPermissionScheme = |
223 "Invalid scheme for 'permissions[*]'."; | 223 "Invalid scheme for 'permissions[*]'."; |
224 const char* kInvalidPlugins = | 224 const char* kInvalidPlugins = |
225 "Invalid value for 'plugins'."; | 225 "Invalid value for 'plugins'."; |
226 const char* kInvalidPluginsPath = | 226 const char* kInvalidPluginsPath = |
227 "Invalid value for 'plugins[*].path'."; | 227 "Invalid value for 'plugins[*].path'."; |
228 const char* kInvalidPluginsPublic = | 228 const char* kInvalidPluginsPublic = |
229 "Invalid value for 'plugins[*].public'."; | 229 "Invalid value for 'plugins[*].public'."; |
230 const char* kInvalidRunAt = | 230 const char* kInvalidRunAt = |
231 "Invalid value for 'content_scripts[*].run_at'."; | 231 "Invalid value for 'content_scripts[*].run_at'."; |
232 extern const char* kInvalidSidebar = | 232 const char* kInvalidSidebar = |
233 "Invalid value for 'sidebar'."; | 233 "Invalid value for 'sidebar'."; |
234 extern const char* kInvalidSidebarDefaultIconPath = | 234 const char* kInvalidSidebarDefaultIconPath = |
235 "Invalid value for 'sidebar.default_icon'."; | 235 "Invalid value for 'sidebar.default_icon'."; |
236 extern const char* kInvalidSidebarDefaultTitle = | 236 const char* kInvalidSidebarDefaultTitle = |
237 "Invalid value for 'sidebar.default_title'."; | 237 "Invalid value for 'sidebar.default_title'."; |
238 extern const char* kInvalidSidebarDefaultUrl = | 238 const char* kInvalidSidebarDefaultUrl = |
239 "Invalid value for 'sidebar.default_url'."; | 239 "Invalid value for 'sidebar.default_url'."; |
240 const char* kInvalidSignature = | 240 const char* kInvalidSignature = |
241 "Value 'signature' is missing or invalid."; | 241 "Value 'signature' is missing or invalid."; |
242 const char* kInvalidTheme = | 242 const char* kInvalidTheme = |
243 "Invalid value for 'theme'."; | 243 "Invalid value for 'theme'."; |
244 const char* kInvalidThemeColors = | 244 const char* kInvalidThemeColors = |
245 "Invalid value for theme colors - colors must be integers"; | 245 "Invalid value for theme colors - colors must be integers"; |
246 const char* kInvalidThemeImages = | 246 const char* kInvalidThemeImages = |
247 "Invalid value for theme images - images must be strings."; | 247 "Invalid value for theme images - images must be strings."; |
248 const char* kInvalidThemeImagesMissing = | 248 const char* kInvalidThemeImagesMissing = |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 // The file to write our decoded message catalogs to, relative to the | 326 // The file to write our decoded message catalogs to, relative to the |
327 // extension_path. | 327 // extension_path. |
328 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; | 328 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; |
329 } | 329 } |
330 | 330 |
331 namespace extension_misc { | 331 namespace extension_misc { |
332 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; | 332 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; |
333 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; | 333 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; |
334 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; | 334 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; |
335 } | 335 } |
OLD | NEW |