| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 extern const char kAppStateNotInstalled[]; | 245 extern const char kAppStateNotInstalled[]; |
| 246 extern const char kAppStateInstalled[]; | 246 extern const char kAppStateInstalled[]; |
| 247 extern const char kAppStateDisabled[]; | 247 extern const char kAppStateDisabled[]; |
| 248 extern const char kAppStateRunning[]; | 248 extern const char kAppStateRunning[]; |
| 249 extern const char kAppStateCannotRun[]; | 249 extern const char kAppStateCannotRun[]; |
| 250 extern const char kAppStateReadyToRun[]; | 250 extern const char kAppStateReadyToRun[]; |
| 251 | 251 |
| 252 // Error indicating that the app notifications API is not accessible by split | 252 // Error indicating that the app notifications API is not accessible by split |
| 253 // mode extensions in incognito windows. | 253 // mode extensions in incognito windows. |
| 254 extern const char kAppNotificationsIncognitoError[]; | 254 extern const char kAppNotificationsIncognitoError[]; |
| 255 |
| 256 // CSP value that makes resources be sandboxed (served from an unique origin, |
| 257 // top-level navigation and popups are disabled). |
| 258 extern const char kSandboxedContentSecurityPolicy[]; |
| 255 } // extension_misc | 259 } // extension_misc |
| 256 | 260 |
| 257 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 261 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |