OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 extern const char* kLaunchWidth; | 48 extern const char* kLaunchWidth; |
49 extern const char* kLayouts; | 49 extern const char* kLayouts; |
50 extern const char* kMatches; | 50 extern const char* kMatches; |
51 extern const char* kMinimumChromeVersion; | 51 extern const char* kMinimumChromeVersion; |
52 extern const char* kNaClModules; | 52 extern const char* kNaClModules; |
53 extern const char* kNaClModulesMIMEType; | 53 extern const char* kNaClModulesMIMEType; |
54 extern const char* kNaClModulesPath; | 54 extern const char* kNaClModulesPath; |
55 extern const char* kName; | 55 extern const char* kName; |
56 extern const char* kOmnibox; | 56 extern const char* kOmnibox; |
57 extern const char* kOmniboxKeyword; | 57 extern const char* kOmniboxKeyword; |
| 58 extern const char* kOptionalPermissions; |
58 extern const char* kOptionsPage; | 59 extern const char* kOptionsPage; |
59 extern const char* kPageAction; | 60 extern const char* kPageAction; |
60 extern const char* kPageActionDefaultIcon; | 61 extern const char* kPageActionDefaultIcon; |
61 extern const char* kPageActionDefaultPopup; | 62 extern const char* kPageActionDefaultPopup; |
62 extern const char* kPageActionDefaultTitle; | 63 extern const char* kPageActionDefaultTitle; |
63 extern const char* kPageActionIcons; | 64 extern const char* kPageActionIcons; |
64 extern const char* kPageActionId; | 65 extern const char* kPageActionId; |
65 extern const char* kPageActionPopup; | 66 extern const char* kPageActionPopup; |
66 extern const char* kPageActionPopupHeight; | 67 extern const char* kPageActionPopupHeight; |
67 extern const char* kPageActionPopupPath; | 68 extern const char* kPageActionPopupPath; |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 INSTALL_CAUSE_UNSET = 0, | 405 INSTALL_CAUSE_UNSET = 0, |
405 INSTALL_CAUSE_USER_DOWNLOAD, | 406 INSTALL_CAUSE_USER_DOWNLOAD, |
406 INSTALL_CAUSE_UPDATE, | 407 INSTALL_CAUSE_UPDATE, |
407 INSTALL_CAUSE_EXTERNAL_FILE, | 408 INSTALL_CAUSE_EXTERNAL_FILE, |
408 INSTALL_CAUSE_AUTOMATION, | 409 INSTALL_CAUSE_AUTOMATION, |
409 NUM_INSTALL_CAUSES | 410 NUM_INSTALL_CAUSES |
410 }; | 411 }; |
411 } // extension_misc | 412 } // extension_misc |
412 | 413 |
413 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 414 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |