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