| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 extern const char kFileHandlerExtensions[]; | 46 extern const char kFileHandlerExtensions[]; |
| 47 extern const char kFileHandlerTitle[]; | 47 extern const char kFileHandlerTitle[]; |
| 48 extern const char kFileHandlerTypes[]; | 48 extern const char kFileHandlerTypes[]; |
| 49 extern const char kFileFilters[]; | 49 extern const char kFileFilters[]; |
| 50 extern const char kFileBrowserHandlers[]; | 50 extern const char kFileBrowserHandlers[]; |
| 51 extern const char kGlobal[]; | 51 extern const char kGlobal[]; |
| 52 extern const char kHideBookmarkButton[]; | 52 extern const char kHideBookmarkButton[]; |
| 53 extern const char kHomepageURL[]; | 53 extern const char kHomepageURL[]; |
| 54 extern const char kIcons[]; | 54 extern const char kIcons[]; |
| 55 extern const char kId[]; | 55 extern const char kId[]; |
| 56 extern const char kImeOptionsPage[]; |
| 56 extern const char kImport[]; | 57 extern const char kImport[]; |
| 57 extern const char kIncognito[]; | 58 extern const char kIncognito[]; |
| 58 extern const char kIncludeGlobs[]; | 59 extern const char kIncludeGlobs[]; |
| 59 extern const char kInputComponents[]; | 60 extern const char kInputComponents[]; |
| 60 extern const char kInputView[]; | 61 extern const char kInputView[]; |
| 61 extern const char kIntentDisposition[]; | 62 extern const char kIntentDisposition[]; |
| 62 extern const char kIntentHref[]; | 63 extern const char kIntentHref[]; |
| 63 extern const char kIntentPath[]; | 64 extern const char kIntentPath[]; |
| 64 extern const char kIntents[]; | 65 extern const char kIntents[]; |
| 65 extern const char kIntentTitle[]; | 66 extern const char kIntentTitle[]; |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 extern const char kWebRequestConflictsWithLazyBackground[]; | 455 extern const char kWebRequestConflictsWithLazyBackground[]; |
| 455 #if defined(OS_CHROMEOS) | 456 #if defined(OS_CHROMEOS) |
| 456 extern const char kIllegalPlugins[]; | 457 extern const char kIllegalPlugins[]; |
| 457 #endif | 458 #endif |
| 458 | 459 |
| 459 } // namespace manifest_errors | 460 } // namespace manifest_errors |
| 460 | 461 |
| 461 } // namespace extensions | 462 } // namespace extensions |
| 462 | 463 |
| 463 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 464 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
| OLD | NEW |