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