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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 extern const char kFileBrowserHandlers[]; | 52 extern const char kFileBrowserHandlers[]; |
53 extern const char kGlobal[]; | 53 extern const char kGlobal[]; |
54 extern const char kHideBookmarkButton[]; | 54 extern const char kHideBookmarkButton[]; |
55 extern const char kHomepageURL[]; | 55 extern const char kHomepageURL[]; |
56 extern const char kIcons[]; | 56 extern const char kIcons[]; |
57 extern const char kId[]; | 57 extern const char kId[]; |
58 extern const char kImeOptionsPage[]; | 58 extern const char kImeOptionsPage[]; |
59 extern const char kImport[]; | 59 extern const char kImport[]; |
60 extern const char kIncognito[]; | 60 extern const char kIncognito[]; |
61 extern const char kIncludeGlobs[]; | 61 extern const char kIncludeGlobs[]; |
| 62 extern const char kIndicator[]; |
62 extern const char kInputComponents[]; | 63 extern const char kInputComponents[]; |
63 extern const char kInputView[]; | 64 extern const char kInputView[]; |
64 extern const char kIntentDisposition[]; | 65 extern const char kIntentDisposition[]; |
65 extern const char kIntentHref[]; | 66 extern const char kIntentHref[]; |
66 extern const char kIntentPath[]; | 67 extern const char kIntentPath[]; |
67 extern const char kIntents[]; | 68 extern const char kIntents[]; |
68 extern const char kIntentTitle[]; | 69 extern const char kIntentTitle[]; |
69 extern const char kIntentType[]; | 70 extern const char kIntentType[]; |
70 extern const char kIsolation[]; | 71 extern const char kIsolation[]; |
71 extern const char kJs[]; | 72 extern const char kJs[]; |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 extern const char kWebRequestConflictsWithLazyBackground[]; | 486 extern const char kWebRequestConflictsWithLazyBackground[]; |
486 #if defined(OS_CHROMEOS) | 487 #if defined(OS_CHROMEOS) |
487 extern const char kIllegalPlugins[]; | 488 extern const char kIllegalPlugins[]; |
488 #endif | 489 #endif |
489 | 490 |
490 } // namespace manifest_errors | 491 } // namespace manifest_errors |
491 | 492 |
492 } // namespace extensions | 493 } // namespace extensions |
493 | 494 |
494 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ | 495 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ |
OLD | NEW |