| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace extensions { | 8 namespace extensions { |
| 9 | 9 |
| 10 // Keys used in JSON representation of extensions. | 10 // Keys used in JSON representation of extensions. |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 extern const char kTtsVoicesEventTypeMarker[]; | 156 extern const char kTtsVoicesEventTypeMarker[]; |
| 157 extern const char kTtsVoicesEventTypeSentence[]; | 157 extern const char kTtsVoicesEventTypeSentence[]; |
| 158 extern const char kTtsVoicesEventTypeStart[]; | 158 extern const char kTtsVoicesEventTypeStart[]; |
| 159 extern const char kTtsVoicesEventTypeWord[]; | 159 extern const char kTtsVoicesEventTypeWord[]; |
| 160 extern const char kTtsVoicesEventTypes[]; | 160 extern const char kTtsVoicesEventTypes[]; |
| 161 extern const char kTtsVoicesGender[]; | 161 extern const char kTtsVoicesGender[]; |
| 162 extern const char kTtsVoicesLang[]; | 162 extern const char kTtsVoicesLang[]; |
| 163 extern const char kTtsVoicesRemote[]; | 163 extern const char kTtsVoicesRemote[]; |
| 164 extern const char kTtsVoicesVoiceName[]; | 164 extern const char kTtsVoicesVoiceName[]; |
| 165 extern const char kType[]; | 165 extern const char kType[]; |
| 166 extern const char kUIOverride[]; |
| 166 extern const char kUpdateURL[]; | 167 extern const char kUpdateURL[]; |
| 167 extern const char kUrlHandlers[]; | 168 extern const char kUrlHandlers[]; |
| 168 extern const char kUrlHandlerTitle[]; | 169 extern const char kUrlHandlerTitle[]; |
| 169 extern const char kVersion[]; | 170 extern const char kVersion[]; |
| 170 extern const char kWebAccessibleResources[]; | 171 extern const char kWebAccessibleResources[]; |
| 171 extern const char kWebURLs[]; | 172 extern const char kWebURLs[]; |
| 172 extern const char kWebview[]; | 173 extern const char kWebview[]; |
| 173 extern const char kWebviewName[]; | 174 extern const char kWebviewName[]; |
| 174 extern const char kWebviewAccessibleResources[]; | 175 extern const char kWebviewAccessibleResources[]; |
| 175 extern const char kWebviewPartitions[]; | 176 extern const char kWebviewPartitions[]; |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 extern const char kInvalidPluginsPath[]; | 386 extern const char kInvalidPluginsPath[]; |
| 386 extern const char kInvalidPluginsPublic[]; | 387 extern const char kInvalidPluginsPublic[]; |
| 387 extern const char kInvalidRequirement[]; | 388 extern const char kInvalidRequirement[]; |
| 388 extern const char kInvalidRequirements[]; | 389 extern const char kInvalidRequirements[]; |
| 389 extern const char kInvalidRunAt[]; | 390 extern const char kInvalidRunAt[]; |
| 390 extern const char kInvalidSandboxedPagesList[]; | 391 extern const char kInvalidSandboxedPagesList[]; |
| 391 extern const char kInvalidSandboxedPage[]; | 392 extern const char kInvalidSandboxedPage[]; |
| 392 extern const char kInvalidSandboxedPagesCSP[]; | 393 extern const char kInvalidSandboxedPagesCSP[]; |
| 393 extern const char kInvalidScriptBadge[]; | 394 extern const char kInvalidScriptBadge[]; |
| 394 extern const char kInvalidSearchEngineURL[]; | 395 extern const char kInvalidSearchEngineURL[]; |
| 395 extern const char kInvalidEmptySettingsOverrides[]; | 396 extern const char kInvalidEmptyDictionary[]; |
| 396 extern const char kInvalidShortName[]; | 397 extern const char kInvalidShortName[]; |
| 397 extern const char kInvalidSignature[]; | 398 extern const char kInvalidSignature[]; |
| 398 extern const char kInvalidSpellcheck[]; | 399 extern const char kInvalidSpellcheck[]; |
| 399 extern const char kInvalidSpellcheckDictionaryFormat[]; | 400 extern const char kInvalidSpellcheckDictionaryFormat[]; |
| 400 extern const char kInvalidSpellcheckDictionaryLanguage[]; | 401 extern const char kInvalidSpellcheckDictionaryLanguage[]; |
| 401 extern const char kInvalidSpellcheckDictionaryLocale[]; | 402 extern const char kInvalidSpellcheckDictionaryLocale[]; |
| 402 extern const char kInvalidSpellcheckDictionaryPath[]; | 403 extern const char kInvalidSpellcheckDictionaryPath[]; |
| 403 extern const char kInvalidStartupOverrideURL[]; | 404 extern const char kInvalidStartupOverrideURL[]; |
| 404 extern const char kInvalidSystemIndicator[]; | 405 extern const char kInvalidSystemIndicator[]; |
| 405 extern const char kInvalidTheme[]; | 406 extern const char kInvalidTheme[]; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 extern const char kWebRequestConflictsWithLazyBackground[]; | 464 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 464 #if defined(OS_CHROMEOS) | 465 #if defined(OS_CHROMEOS) |
| 465 extern const char kIllegalPlugins[]; | 466 extern const char kIllegalPlugins[]; |
| 466 #endif | 467 #endif |
| 467 | 468 |
| 468 } // namespace manifest_errors | 469 } // namespace manifest_errors |
| 469 | 470 |
| 470 } // namespace extensions | 471 } // namespace extensions |
| 471 | 472 |
| 472 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 473 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |