| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Keys used in JSON representation of extensions. | 9 // Keys used in JSON representation of extensions. |
| 10 namespace extension_manifest_keys { | 10 namespace extension_manifest_keys { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 extern const char* kPluginsPath; | 52 extern const char* kPluginsPath; |
| 53 extern const char* kPluginsPublic; | 53 extern const char* kPluginsPublic; |
| 54 extern const char* kPublicKey; | 54 extern const char* kPublicKey; |
| 55 extern const char* kRunAt; | 55 extern const char* kRunAt; |
| 56 extern const char* kSignature; | 56 extern const char* kSignature; |
| 57 extern const char* kTheme; | 57 extern const char* kTheme; |
| 58 extern const char* kThemeColors; | 58 extern const char* kThemeColors; |
| 59 extern const char* kThemeDisplayProperties; | 59 extern const char* kThemeDisplayProperties; |
| 60 extern const char* kThemeImages; | 60 extern const char* kThemeImages; |
| 61 extern const char* kThemeTints; | 61 extern const char* kThemeTints; |
| 62 extern const char* kToolstripMoleHeight; | |
| 63 extern const char* kToolstripMolePath; | |
| 64 extern const char* kToolstripPath; | 62 extern const char* kToolstripPath; |
| 65 extern const char* kToolstrips; | 63 extern const char* kToolstrips; |
| 66 extern const char* kType; | 64 extern const char* kType; |
| 67 extern const char* kUpdateURL; | 65 extern const char* kUpdateURL; |
| 68 extern const char* kVersion; | 66 extern const char* kVersion; |
| 69 extern const char* kWebLaunchUrl; | 67 extern const char* kWebLaunchUrl; |
| 70 extern const char* kWebURLs; | 68 extern const char* kWebURLs; |
| 71 } // namespace extension_manifest_keys | 69 } // namespace extension_manifest_keys |
| 72 | 70 |
| 73 // Some values expected in manifests. | 71 // Some values expected in manifests. |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 } | 204 } |
| 207 | 205 |
| 208 namespace extension_misc { | 206 namespace extension_misc { |
| 209 const int kUnknownWindowId = -1; | 207 const int kUnknownWindowId = -1; |
| 210 | 208 |
| 211 // The extension id of the bookmark manager. | 209 // The extension id of the bookmark manager. |
| 212 extern const char* kBookmarkManagerId; | 210 extern const char* kBookmarkManagerId; |
| 213 } // extension_misc | 211 } // extension_misc |
| 214 | 212 |
| 215 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 213 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |