Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: chrome/common/extensions/permissions/api_permission.h

Issue 11444020: DIAL extension API skeleton. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: abc.... Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 kBookmark, 50 kBookmark,
51 kBookmarkManagerPrivate, 51 kBookmarkManagerPrivate,
52 kBrowsingData, 52 kBrowsingData,
53 kChromeosInfoPrivate, 53 kChromeosInfoPrivate,
54 kClipboardRead, 54 kClipboardRead,
55 kClipboardWrite, 55 kClipboardWrite,
56 kCloudPrintPrivate, 56 kCloudPrintPrivate,
57 kContentSettings, 57 kContentSettings,
58 kContextMenus, 58 kContextMenus,
59 kCookie, 59 kCookie,
60 kDial,
60 kDebugger, 61 kDebugger,
61 kDeclarative, 62 kDeclarative,
62 kDeclarativeWebRequest, 63 kDeclarativeWebRequest,
63 kDevtools, 64 kDevtools,
64 kDownloads, 65 kDownloads,
65 kEchoPrivate, 66 kEchoPrivate,
66 kExperimental, 67 kExperimental,
67 kFileBrowserHandler, 68 kFileBrowserHandler,
68 kFileBrowserHandlerInternal, 69 kFileBrowserHandlerInternal,
69 kFileBrowserPrivate, 70 kFileBrowserPrivate,
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 const char* const name_; 277 const char* const name_;
277 const int flags_; 278 const int flags_;
278 const int l10n_message_id_; 279 const int l10n_message_id_;
279 const PermissionMessage::ID message_id_; 280 const PermissionMessage::ID message_id_;
280 const APIPermissionConstructor api_permission_constructor_; 281 const APIPermissionConstructor api_permission_constructor_;
281 }; 282 };
282 283
283 } // namespace extensions 284 } // namespace extensions
284 285
285 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ 286 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/dial.idl ('k') | chrome/common/extensions/permissions/api_permission.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698