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_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_API_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_API_CONSTANTS_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_API_CONSTANTS_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_API_CONSTANTS_H_ |
7 #pragma once | |
8 | 7 |
9 namespace extension_management_api_constants { | 8 namespace extension_management_api_constants { |
10 | 9 |
11 // Keys used for incoming arguments and outgoing JSON data. | 10 // Keys used for incoming arguments and outgoing JSON data. |
12 extern const char kAppLaunchUrlKey[]; | 11 extern const char kAppLaunchUrlKey[]; |
13 extern const char kDisabledReasonKey[]; | 12 extern const char kDisabledReasonKey[]; |
14 extern const char kHostPermissionsKey[]; | 13 extern const char kHostPermissionsKey[]; |
15 extern const char kIconsKey[]; | 14 extern const char kIconsKey[]; |
16 extern const char kIsAppKey[]; | 15 extern const char kIsAppKey[]; |
17 extern const char kMayDisableKey[]; | 16 extern const char kMayDisableKey[]; |
(...skipping 13 matching lines...) Expand all Loading... |
31 extern const char kManifestParseError[]; | 30 extern const char kManifestParseError[]; |
32 extern const char kNoExtensionError[]; | 31 extern const char kNoExtensionError[]; |
33 extern const char kNotAnAppError[]; | 32 extern const char kNotAnAppError[]; |
34 extern const char kUserCantModifyError[]; | 33 extern const char kUserCantModifyError[]; |
35 extern const char kUninstallCanceledError[]; | 34 extern const char kUninstallCanceledError[]; |
36 extern const char kUserDidNotReEnableError[]; | 35 extern const char kUserDidNotReEnableError[]; |
37 | 36 |
38 } // namespace extension_management_api_constants | 37 } // namespace extension_management_api_constants |
39 | 38 |
40 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_API_CONSTANTS_H_ | 39 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_API_CONSTANTS_H_ |
OLD | NEW |