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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 extern const char kPlatformApp[]; | 93 extern const char kPlatformApp[]; |
94 extern const char kPlugins[]; | 94 extern const char kPlugins[]; |
95 extern const char kPluginsPath[]; | 95 extern const char kPluginsPath[]; |
96 extern const char kPluginsPublic[]; | 96 extern const char kPluginsPublic[]; |
97 extern const char kPublicKey[]; | 97 extern const char kPublicKey[]; |
98 extern const char kRequirements[]; | 98 extern const char kRequirements[]; |
99 extern const char kRunAt[]; | 99 extern const char kRunAt[]; |
100 extern const char kShiftKey[]; | 100 extern const char kShiftKey[]; |
101 extern const char kShortcutKey[]; | 101 extern const char kShortcutKey[]; |
102 extern const char kSignature[]; | 102 extern const char kSignature[]; |
| 103 extern const char kSuggestedKeyMac[]; |
| 104 extern const char kSuggestedKeyOther[]; |
| 105 extern const char kSuggestedKeyWin[]; |
103 extern const char kTheme[]; | 106 extern const char kTheme[]; |
104 extern const char kThemeColors[]; | 107 extern const char kThemeColors[]; |
105 extern const char kThemeDisplayProperties[]; | 108 extern const char kThemeDisplayProperties[]; |
106 extern const char kThemeImages[]; | 109 extern const char kThemeImages[]; |
107 extern const char kThemeTints[]; | 110 extern const char kThemeTints[]; |
108 extern const char kTtsEngine[]; | 111 extern const char kTtsEngine[]; |
109 extern const char kTtsGenderFemale[]; | 112 extern const char kTtsGenderFemale[]; |
110 extern const char kTtsGenderMale[]; | 113 extern const char kTtsGenderMale[]; |
111 extern const char kTtsVoices[]; | 114 extern const char kTtsVoices[]; |
112 extern const char kTtsVoicesEventTypeEnd[]; | 115 extern const char kTtsVoicesEventTypeEnd[]; |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 | 513 |
511 enum UnloadedExtensionReason { | 514 enum UnloadedExtensionReason { |
512 UNLOAD_REASON_DISABLE, // Extension is being disabled. | 515 UNLOAD_REASON_DISABLE, // Extension is being disabled. |
513 UNLOAD_REASON_UPDATE, // Extension is being updated to a newer version. | 516 UNLOAD_REASON_UPDATE, // Extension is being updated to a newer version. |
514 UNLOAD_REASON_UNINSTALL, // Extension is being uninstalled. | 517 UNLOAD_REASON_UNINSTALL, // Extension is being uninstalled. |
515 UNLOAD_REASON_TERMINATE, // Extension has terminated. | 518 UNLOAD_REASON_TERMINATE, // Extension has terminated. |
516 }; | 519 }; |
517 } // extension_misc | 520 } // extension_misc |
518 | 521 |
519 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 522 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |