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

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

Issue 11038021: Implement Chrome Extension TabCapture API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 1 month 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 kPrivacy, 88 kPrivacy,
89 kProxy, 89 kProxy,
90 kPushMessaging, 90 kPushMessaging,
91 kRtcPrivate, 91 kRtcPrivate,
92 kSerial, 92 kSerial,
93 kSocket, 93 kSocket,
94 kStorage, 94 kStorage,
95 kSyncFileSystem, 95 kSyncFileSystem,
96 kSystemPrivate, 96 kSystemPrivate,
97 kTab, 97 kTab,
98 kTabCapture,
98 kTerminalPrivate, 99 kTerminalPrivate,
99 kTopSites, 100 kTopSites,
100 kTts, 101 kTts,
101 kTtsEngine, 102 kTtsEngine,
102 kUnlimitedStorage, 103 kUnlimitedStorage,
103 kVideoCapture, 104 kVideoCapture,
104 kWallpaperPrivate, 105 kWallpaperPrivate,
105 kWebNavigation, 106 kWebNavigation,
106 kWebRequest, 107 kWebRequest,
107 kWebRequestBlocking, 108 kWebRequestBlocking,
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 const char* const name_; 265 const char* const name_;
265 const int flags_; 266 const int flags_;
266 const int l10n_message_id_; 267 const int l10n_message_id_;
267 const PermissionMessage::ID message_id_; 268 const PermissionMessage::ID message_id_;
268 const APIPermissionConstructor api_permission_constructor_; 269 const APIPermissionConstructor api_permission_constructor_;
269 }; 270 };
270 271
271 } // namespace extensions 272 } // namespace extensions
272 273
273 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ 274 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/feature_switch.cc ('k') | chrome/common/extensions/permissions/api_permission.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698