Chromium Code Reviews| 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_PERMISSIONS_API_PERMISSION_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 6 #define CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 109 kScreensaver, | 109 kScreensaver, |
| 110 kSerial, | 110 kSerial, |
| 111 kSessionRestore, | 111 kSessionRestore, |
| 112 kSocket, | 112 kSocket, |
| 113 kStorage, | 113 kStorage, |
| 114 kStreamsPrivate, | 114 kStreamsPrivate, |
| 115 kSyncFileSystem, | 115 kSyncFileSystem, |
| 116 kSystemPrivate, | 116 kSystemPrivate, |
| 117 kSystemIndicator, | 117 kSystemIndicator, |
| 118 kSystemDisplay, | 118 kSystemDisplay, |
| 119 kSystemStorage, | |
| 120 kSystemStorageAddAvailabaleCapacityWatch, | |
| 121 kSystemStorageGetAllAvailableCapacityWatches, | |
| 122 kSystemStorageRemoveAllAvailableCapacityWatches, | |
| 123 kSystemStorageRemoveAvailableCapacityWatch, | |
| 124 kSystemStorageOnAvailableCapacityChanged, | |
|
not at google - send to devlin
2013/07/24 16:01:47
you only need kSystemStorage
Haojian Wu
2013/07/25 04:21:57
Done.
| |
| 119 kTab, | 125 kTab, |
| 120 kTabCapture, | 126 kTabCapture, |
| 121 kTerminalPrivate, | 127 kTerminalPrivate, |
| 122 kTopSites, | 128 kTopSites, |
| 123 kTts, | 129 kTts, |
| 124 kTtsEngine, | 130 kTtsEngine, |
| 125 kUnlimitedStorage, | 131 kUnlimitedStorage, |
| 126 kUsb, | 132 kUsb, |
| 127 kUsbDevice, | 133 kUsbDevice, |
| 128 kVideoCapture, | 134 kVideoCapture, |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 303 const char* const name_; | 309 const char* const name_; |
| 304 const int flags_; | 310 const int flags_; |
| 305 const int l10n_message_id_; | 311 const int l10n_message_id_; |
| 306 const PermissionMessage::ID message_id_; | 312 const PermissionMessage::ID message_id_; |
| 307 const APIPermissionConstructor api_permission_constructor_; | 313 const APIPermissionConstructor api_permission_constructor_; |
| 308 }; | 314 }; |
| 309 | 315 |
| 310 } // namespace extensions | 316 } // namespace extensions |
| 311 | 317 |
| 312 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 318 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |