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/extensions/extension_manifest_constants.h" | 5 #include "chrome/common/extensions/extension_manifest_constants.h" |
6 | 6 |
7 namespace extension_manifest_values { | 7 namespace extension_manifest_values { |
8 const char kBrowserActionCommandEvent[] = "_execute_browser_action"; | 8 const char kBrowserActionCommandEvent[] = "_execute_browser_action"; |
9 const char kIncognitoSplit[] = "split"; | 9 const char kIncognitoSplit[] = "split"; |
10 const char kIncognitoSpanning[] = "spanning"; | 10 const char kIncognitoSpanning[] = "spanning"; |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 const char kInvalidManifestVersionOld[] = | 275 const char kInvalidManifestVersionOld[] = |
276 "The 'manifest_version' key must be present and set to * (without quotes). " | 276 "The 'manifest_version' key must be present and set to * (without quotes). " |
277 "See developer.chrome.com/*/manifestVersion.html for details."; | 277 "See developer.chrome.com/*/manifestVersion.html for details."; |
278 const char kInvalidMatch[] = | 278 const char kInvalidMatch[] = |
279 "Invalid value for 'content_scripts[*].matches[*]': *"; | 279 "Invalid value for 'content_scripts[*].matches[*]': *"; |
280 const char kInvalidMatchCount[] = | 280 const char kInvalidMatchCount[] = |
281 "Invalid value for 'content_scripts[*].matches'. There must be at least " | 281 "Invalid value for 'content_scripts[*].matches'. There must be at least " |
282 "one match specified."; | 282 "one match specified."; |
283 const char kInvalidMatches[] = | 283 const char kInvalidMatches[] = |
284 "Required value 'content_scripts[*].matches' is missing or invalid."; | 284 "Required value 'content_scripts[*].matches' is missing or invalid."; |
| 285 const char kInvalidMDnsServiceTypes[] = |
| 286 "Invalid MDns service types."; |
285 const char kInvalidMIMETypes[] = | 287 const char kInvalidMIMETypes[] = |
286 "Invalid value for 'mime_types'"; | 288 "Invalid value for 'mime_types'"; |
287 const char kInvalidMimeTypesHandler[] = | 289 const char kInvalidMimeTypesHandler[] = |
288 "Invalid value for 'mime_types'."; | 290 "Invalid value for 'mime_types'."; |
289 const char kInvalidMinimumChromeVersion[] = | 291 const char kInvalidMinimumChromeVersion[] = |
290 "Invalid value for 'minimum_chrome_version'."; | 292 "Invalid value for 'minimum_chrome_version'."; |
291 const char kInvalidName[] = | 293 const char kInvalidName[] = |
292 "Required value 'name' is missing or invalid."; | 294 "Required value 'name' is missing or invalid."; |
293 const char kInvalidNaClModules[] = | 295 const char kInvalidNaClModules[] = |
294 "Invalid value for 'nacl_modules'."; | 296 "Invalid value for 'nacl_modules'."; |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 const char kScriptBadgeTitleIgnored[] = | 474 const char kScriptBadgeTitleIgnored[] = |
473 "default_title specified in script_badge manifest section will not be " | 475 "default_title specified in script_badge manifest section will not be " |
474 "used."; | 476 "used."; |
475 const char kWebRequestConflictsWithLazyBackground[] = | 477 const char kWebRequestConflictsWithLazyBackground[] = |
476 "The 'webRequest' API cannot be used with event pages."; | 478 "The 'webRequest' API cannot be used with event pages."; |
477 #if defined(OS_CHROMEOS) | 479 #if defined(OS_CHROMEOS) |
478 const char kIllegalPlugins[] = | 480 const char kIllegalPlugins[] = |
479 "Extensions cannot install plugins on Chrome OS"; | 481 "Extensions cannot install plugins on Chrome OS"; |
480 #endif | 482 #endif |
481 } // namespace extension_manifest_errors | 483 } // namespace extension_manifest_errors |
OLD | NEW |