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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 | 244 |
245 // The states that an app can be in, as reported by chrome.app.installState | 245 // The states that an app can be in, as reported by chrome.app.installState |
246 // and chrome.app.runningState. | 246 // and chrome.app.runningState. |
247 extern const char kAppStateNotInstalled[]; | 247 extern const char kAppStateNotInstalled[]; |
248 extern const char kAppStateInstalled[]; | 248 extern const char kAppStateInstalled[]; |
249 extern const char kAppStateDisabled[]; | 249 extern const char kAppStateDisabled[]; |
250 extern const char kAppStateRunning[]; | 250 extern const char kAppStateRunning[]; |
251 extern const char kAppStateCannotRun[]; | 251 extern const char kAppStateCannotRun[]; |
252 extern const char kAppStateReadyToRun[]; | 252 extern const char kAppStateReadyToRun[]; |
253 | 253 |
| 254 // The path part of the file system url used for media file systems. |
| 255 extern const char kMediaFileSystemPathPart[]; |
| 256 |
254 // Error indicating that the app notifications API is not accessible by split | 257 // Error indicating that the app notifications API is not accessible by split |
255 // mode extensions in incognito windows. | 258 // mode extensions in incognito windows. |
256 extern const char kAppNotificationsIncognitoError[]; | 259 extern const char kAppNotificationsIncognitoError[]; |
257 } // extension_misc | 260 } // extension_misc |
258 | 261 |
259 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 262 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |