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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 kBackground, | 46 kBackground, |
47 kBluetooth, | 47 kBluetooth, |
48 kBluetoothDevice, | 48 kBluetoothDevice, |
49 kBookmark, | 49 kBookmark, |
50 kBookmarkManagerPrivate, | 50 kBookmarkManagerPrivate, |
51 kBrowsingData, | 51 kBrowsingData, |
52 kChromeosInfoPrivate, | 52 kChromeosInfoPrivate, |
53 kClipboardRead, | 53 kClipboardRead, |
54 kClipboardWrite, | 54 kClipboardWrite, |
55 kCloudPrintPrivate, | 55 kCloudPrintPrivate, |
| 56 kCommandLinePrivate, |
56 kContentSettings, | 57 kContentSettings, |
57 kContextMenus, | 58 kContextMenus, |
58 kCookie, | 59 kCookie, |
59 kDial, | 60 kDial, |
60 kDebugger, | 61 kDebugger, |
61 kDeclarative, | 62 kDeclarative, |
62 kDeclarativeContent, | 63 kDeclarativeContent, |
63 kDeclarativeWebRequest, | 64 kDeclarativeWebRequest, |
64 kDeveloperPrivate, | 65 kDeveloperPrivate, |
65 kDevtools, | 66 kDevtools, |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 const char* const name_; | 291 const char* const name_; |
291 const int flags_; | 292 const int flags_; |
292 const int l10n_message_id_; | 293 const int l10n_message_id_; |
293 const PermissionMessage::ID message_id_; | 294 const PermissionMessage::ID message_id_; |
294 const APIPermissionConstructor api_permission_constructor_; | 295 const APIPermissionConstructor api_permission_constructor_; |
295 }; | 296 }; |
296 | 297 |
297 } // namespace extensions | 298 } // namespace extensions |
298 | 299 |
299 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 300 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |