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 <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 extern const char kAppStateNotInstalled[]; | 275 extern const char kAppStateNotInstalled[]; |
276 extern const char kAppStateInstalled[]; | 276 extern const char kAppStateInstalled[]; |
277 extern const char kAppStateDisabled[]; | 277 extern const char kAppStateDisabled[]; |
278 extern const char kAppStateRunning[]; | 278 extern const char kAppStateRunning[]; |
279 extern const char kAppStateCannotRun[]; | 279 extern const char kAppStateCannotRun[]; |
280 extern const char kAppStateReadyToRun[]; | 280 extern const char kAppStateReadyToRun[]; |
281 | 281 |
282 // The path part of the file system url used for media file systems. | 282 // The path part of the file system url used for media file systems. |
283 extern const char kMediaFileSystemPathPart[]; | 283 extern const char kMediaFileSystemPathPart[]; |
284 | 284 |
| 285 // The key used for signing some pieces of data from the webstore. |
| 286 extern const uint8 kWebstoreSignaturesPublicKey[]; |
| 287 extern const int kWebstoreSignaturesPublicKeySize; |
| 288 |
285 } // namespace extension_misc | 289 } // namespace extension_misc |
286 | 290 |
287 namespace extensions { | 291 namespace extensions { |
288 | 292 |
289 // This enum is used for the launch type the user wants to use for an | 293 // This enum is used for the launch type the user wants to use for an |
290 // application. | 294 // application. |
291 // Do not remove items or re-order this enum as it is used in preferences | 295 // Do not remove items or re-order this enum as it is used in preferences |
292 // and histograms. | 296 // and histograms. |
293 enum LaunchType { | 297 enum LaunchType { |
294 LAUNCH_TYPE_INVALID = -1, | 298 LAUNCH_TYPE_INVALID = -1, |
(...skipping 17 matching lines...) Expand all Loading... |
312 LAUNCH_CONTAINER_PANEL, | 316 LAUNCH_CONTAINER_PANEL, |
313 LAUNCH_CONTAINER_TAB, | 317 LAUNCH_CONTAINER_TAB, |
314 // For platform apps, which don't actually have a container (they just get a | 318 // For platform apps, which don't actually have a container (they just get a |
315 // "onLaunched" event). | 319 // "onLaunched" event). |
316 LAUNCH_CONTAINER_NONE | 320 LAUNCH_CONTAINER_NONE |
317 }; | 321 }; |
318 | 322 |
319 } // namespace extensions | 323 } // namespace extensions |
320 | 324 |
321 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 325 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |