| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 extern const char kIntentDisposition[]; | 52 extern const char kIntentDisposition[]; |
| 53 extern const char kIsolation[]; | 53 extern const char kIsolation[]; |
| 54 extern const char kJs[]; | 54 extern const char kJs[]; |
| 55 extern const char kKey[]; | 55 extern const char kKey[]; |
| 56 extern const char kKeycode[]; | 56 extern const char kKeycode[]; |
| 57 extern const char kLanguage[]; | 57 extern const char kLanguage[]; |
| 58 extern const char kLaunch[]; | 58 extern const char kLaunch[]; |
| 59 extern const char kLaunchContainer[]; | 59 extern const char kLaunchContainer[]; |
| 60 extern const char kLaunchHeight[]; | 60 extern const char kLaunchHeight[]; |
| 61 extern const char kLaunchLocalPath[]; | 61 extern const char kLaunchLocalPath[]; |
| 62 extern const char kLaunchMaxHeight[]; |
| 63 extern const char kLaunchMaxWidth[]; |
| 62 extern const char kLaunchMinHeight[]; | 64 extern const char kLaunchMinHeight[]; |
| 63 extern const char kLaunchMinWidth[]; | 65 extern const char kLaunchMinWidth[]; |
| 64 extern const char kLaunchWebURL[]; | 66 extern const char kLaunchWebURL[]; |
| 65 extern const char kLaunchWidth[]; | 67 extern const char kLaunchWidth[]; |
| 66 extern const char kLayouts[]; | 68 extern const char kLayouts[]; |
| 67 extern const char kManifestVersion[]; | 69 extern const char kManifestVersion[]; |
| 68 extern const char kMatches[]; | 70 extern const char kMatches[]; |
| 69 extern const char kMinimumChromeVersion[]; | 71 extern const char kMinimumChromeVersion[]; |
| 70 extern const char kNaClModules[]; | 72 extern const char kNaClModules[]; |
| 71 extern const char kNaClModulesMIMEType[]; | 73 extern const char kNaClModulesMIMEType[]; |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 | 504 |
| 503 enum UnloadedExtensionReason { | 505 enum UnloadedExtensionReason { |
| 504 UNLOAD_REASON_DISABLE, // Extension is being disabled. | 506 UNLOAD_REASON_DISABLE, // Extension is being disabled. |
| 505 UNLOAD_REASON_UPDATE, // Extension is being updated to a newer version. | 507 UNLOAD_REASON_UPDATE, // Extension is being updated to a newer version. |
| 506 UNLOAD_REASON_UNINSTALL, // Extension is being uninstalled. | 508 UNLOAD_REASON_UNINSTALL, // Extension is being uninstalled. |
| 507 UNLOAD_REASON_TERMINATE, // Extension has terminated. | 509 UNLOAD_REASON_TERMINATE, // Extension has terminated. |
| 508 }; | 510 }; |
| 509 } // extension_misc | 511 } // extension_misc |
| 510 | 512 |
| 511 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 513 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |