| 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 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 extern const char kAppStateNotInstalled[]; | 239 extern const char kAppStateNotInstalled[]; |
| 240 extern const char kAppStateInstalled[]; | 240 extern const char kAppStateInstalled[]; |
| 241 extern const char kAppStateDisabled[]; | 241 extern const char kAppStateDisabled[]; |
| 242 extern const char kAppStateRunning[]; | 242 extern const char kAppStateRunning[]; |
| 243 extern const char kAppStateCannotRun[]; | 243 extern const char kAppStateCannotRun[]; |
| 244 extern const char kAppStateReadyToRun[]; | 244 extern const char kAppStateReadyToRun[]; |
| 245 | 245 |
| 246 // The path part of the file system url used for media file systems. | 246 // The path part of the file system url used for media file systems. |
| 247 extern const char kMediaFileSystemPathPart[]; | 247 extern const char kMediaFileSystemPathPart[]; |
| 248 | 248 |
| 249 // The key used for signing some pieces of data from the webstore. | |
| 250 extern const uint8_t kWebstoreSignaturesPublicKey[]; | |
| 251 extern const int kWebstoreSignaturesPublicKeySize; | |
| 252 | |
| 253 #if defined(OS_CHROMEOS) | 249 #if defined(OS_CHROMEOS) |
| 254 // Returns true if |extension_id| is one of the IME extensions that will create | 250 // Returns true if |extension_id| is one of the IME extensions that will create |
| 255 // IME menu. | 251 // IME menu. |
| 256 bool IsImeMenuExtensionId(const std::string& extension_id); | 252 bool IsImeMenuExtensionId(const std::string& extension_id); |
| 257 #endif | 253 #endif |
| 258 } // namespace extension_misc | 254 } // namespace extension_misc |
| 259 | 255 |
| 260 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 256 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |