| 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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 const char kInvalidTtsVoicesEventTypes[] = | 403 const char kInvalidTtsVoicesEventTypes[] = |
| 404 "Invalid value for 'tts_engine.voices[*].event_types'."; | 404 "Invalid value for 'tts_engine.voices[*].event_types'."; |
| 405 const char kInvalidTtsVoicesGender[] = | 405 const char kInvalidTtsVoicesGender[] = |
| 406 "Invalid value for 'tts_engine.voices[*].gender'."; | 406 "Invalid value for 'tts_engine.voices[*].gender'."; |
| 407 const char kInvalidTtsVoicesLang[] = | 407 const char kInvalidTtsVoicesLang[] = |
| 408 "Invalid value for 'tts_engine.voices[*].lang'."; | 408 "Invalid value for 'tts_engine.voices[*].lang'."; |
| 409 const char kInvalidTtsVoicesVoiceName[] = | 409 const char kInvalidTtsVoicesVoiceName[] = |
| 410 "Invalid value for 'tts_engine.voices[*].voice_name'."; | 410 "Invalid value for 'tts_engine.voices[*].voice_name'."; |
| 411 const char kInvalidUpdateURL[] = | 411 const char kInvalidUpdateURL[] = |
| 412 "Invalid value for update url: '[*]'."; | 412 "Invalid value for update url: '[*]'."; |
| 413 const char kInvalidURLHandlers[] = |
| 414 "Invalid value for 'url_handlers'."; |
| 415 const char kInvalidURLHandlerPatternElement[] = |
| 416 "Invalid value for 'url_handlers[*]'."; |
| 417 const char kInvalidURLHandlerTitle[] = |
| 418 "Invalid value for 'url_handlers[*].title'."; |
| 419 const char kInvalidURLHandlerPattern[] = |
| 420 "Invalid value for 'url_handlers[*].matches[*]'."; |
| 413 const char kInvalidURLPatternError[] = | 421 const char kInvalidURLPatternError[] = |
| 414 "Invalid url pattern '*'"; | 422 "Invalid url pattern '*'"; |
| 415 const char kInvalidVersion[] = | 423 const char kInvalidVersion[] = |
| 416 "Required value 'version' is missing or invalid. It must be between 1-4 " | 424 "Required value 'version' is missing or invalid. It must be between 1-4 " |
| 417 "dot-separated integers each between 0 and 65536."; | 425 "dot-separated integers each between 0 and 65536."; |
| 418 const char kInvalidWebAccessibleResourcesList[] = | 426 const char kInvalidWebAccessibleResourcesList[] = |
| 419 "Invalid value for 'web_accessible_resources'."; | 427 "Invalid value for 'web_accessible_resources'."; |
| 420 const char kInvalidWebAccessibleResource[] = | 428 const char kInvalidWebAccessibleResource[] = |
| 421 "Invalid value for 'web_accessible_resources[*]'."; | 429 "Invalid value for 'web_accessible_resources[*]'."; |
| 422 const char kInvalidWebURL[] = | 430 const char kInvalidWebURL[] = |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 const char kScriptBadgeTitleIgnored[] = | 488 const char kScriptBadgeTitleIgnored[] = |
| 481 "default_title specified in script_badge manifest section will not be " | 489 "default_title specified in script_badge manifest section will not be " |
| 482 "used."; | 490 "used."; |
| 483 const char kWebRequestConflictsWithLazyBackground[] = | 491 const char kWebRequestConflictsWithLazyBackground[] = |
| 484 "The 'webRequest' API cannot be used with event pages."; | 492 "The 'webRequest' API cannot be used with event pages."; |
| 485 #if defined(OS_CHROMEOS) | 493 #if defined(OS_CHROMEOS) |
| 486 const char kIllegalPlugins[] = | 494 const char kIllegalPlugins[] = |
| 487 "Extensions cannot install plugins on Chrome OS"; | 495 "Extensions cannot install plugins on Chrome OS"; |
| 488 #endif | 496 #endif |
| 489 } // namespace extension_manifest_errors | 497 } // namespace extension_manifest_errors |
| OLD | NEW |