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_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 // Max size (both dimensions) for browser and page actions. | 73 // Max size (both dimensions) for browser and page actions. |
74 static const int kPageActionIconMaxSize; | 74 static const int kPageActionIconMaxSize; |
75 static const int kBrowserActionIconMaxSize; | 75 static const int kBrowserActionIconMaxSize; |
76 | 76 |
77 // Each permission is a module that the extension is permitted to use. | 77 // Each permission is a module that the extension is permitted to use. |
78 static const char* kTabPermission; | 78 static const char* kTabPermission; |
79 static const char* kBookmarkPermission; | 79 static const char* kBookmarkPermission; |
80 static const char* kNotificationPermission; | 80 static const char* kNotificationPermission; |
81 static const char* kExperimentalPermission; | 81 static const char* kExperimentalPermission; |
82 static const char* kIncognitoPermission; | 82 static const char* kIncognitoPermission; |
| 83 static const char* kUnlimitedStoragePermission; |
83 | 84 |
84 static const char* kPermissionNames[]; | 85 static const char* kPermissionNames[]; |
85 static const size_t kNumPermissions; | 86 static const size_t kNumPermissions; |
86 | 87 |
87 // An NPAPI plugin included in the extension. | 88 // An NPAPI plugin included in the extension. |
88 struct PluginInfo { | 89 struct PluginInfo { |
89 FilePath path; // Path to the plugin. | 90 FilePath path; // Path to the plugin. |
90 bool is_public; // False if only this extension can load this plugin. | 91 bool is_public; // False if only this extension can load this plugin. |
91 }; | 92 }; |
92 | 93 |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 scoped_ptr<DictionaryValue> extension_manifest; | 469 scoped_ptr<DictionaryValue> extension_manifest; |
469 std::string extension_id; | 470 std::string extension_id; |
470 FilePath extension_path; | 471 FilePath extension_path; |
471 Extension::Location extension_location; | 472 Extension::Location extension_location; |
472 | 473 |
473 private: | 474 private: |
474 DISALLOW_COPY_AND_ASSIGN(ExtensionInfo); | 475 DISALLOW_COPY_AND_ASSIGN(ExtensionInfo); |
475 }; | 476 }; |
476 | 477 |
477 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_ | 478 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
OLD | NEW |