| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 kClipboardRead, | 55 kClipboardRead, |
| 56 kClipboardWrite, | 56 kClipboardWrite, |
| 57 kCloudPrintPrivate, | 57 kCloudPrintPrivate, |
| 58 kContentSettings, | 58 kContentSettings, |
| 59 kContextMenus, | 59 kContextMenus, |
| 60 kCookie, | 60 kCookie, |
| 61 kDial, | 61 kDial, |
| 62 kDebugger, | 62 kDebugger, |
| 63 kDeclarative, | 63 kDeclarative, |
| 64 kDeclarativeWebRequest, | 64 kDeclarativeWebRequest, |
| 65 kDeveloperPrivate, |
| 65 kDevtools, | 66 kDevtools, |
| 66 kDownloads, | 67 kDownloads, |
| 67 kEchoPrivate, | 68 kEchoPrivate, |
| 68 kExperimental, | 69 kExperimental, |
| 69 kFileBrowserHandler, | 70 kFileBrowserHandler, |
| 70 kFileBrowserHandlerInternal, | 71 kFileBrowserHandlerInternal, |
| 71 kFileBrowserPrivate, | 72 kFileBrowserPrivate, |
| 72 kFileSystem, | 73 kFileSystem, |
| 73 kFileSystemWrite, | 74 kFileSystemWrite, |
| 74 kFontSettings, | 75 kFontSettings, |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 const char* const name_; | 289 const char* const name_; |
| 289 const int flags_; | 290 const int flags_; |
| 290 const int l10n_message_id_; | 291 const int l10n_message_id_; |
| 291 const PermissionMessage::ID message_id_; | 292 const PermissionMessage::ID message_id_; |
| 292 const APIPermissionConstructor api_permission_constructor_; | 293 const APIPermissionConstructor api_permission_constructor_; |
| 293 }; | 294 }; |
| 294 | 295 |
| 295 } // namespace extensions | 296 } // namespace extensions |
| 296 | 297 |
| 297 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 298 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |