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

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

Issue 17298002: Allow tabCapture API to be granted for chrome:// pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests.. how did it even work before? Created 7 years, 3 months 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 kSocketsUdp, 127 kSocketsUdp,
128 kStorage, 128 kStorage,
129 kStreamsPrivate, 129 kStreamsPrivate,
130 kSyncFileSystem, 130 kSyncFileSystem,
131 kSystemPrivate, 131 kSystemPrivate,
132 kSystemIndicator, 132 kSystemIndicator,
133 kSystemDisplay, 133 kSystemDisplay,
134 kSystemStorage, 134 kSystemStorage,
135 kTab, 135 kTab,
136 kTabCapture, 136 kTabCapture,
137 kTabCaptureForTab,
137 kTerminalPrivate, 138 kTerminalPrivate,
138 kTopSites, 139 kTopSites,
139 kTts, 140 kTts,
140 kTtsEngine, 141 kTtsEngine,
141 kUnlimitedStorage, 142 kUnlimitedStorage,
142 kUsb, 143 kUsb,
143 kUsbDevice, 144 kUsbDevice,
144 kVideoCapture, 145 kVideoCapture,
145 kVirtualKeyboardPrivate, 146 kVirtualKeyboardPrivate,
146 kWallpaperPrivate, 147 kWallpaperPrivate,
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 const char* const name_; 322 const char* const name_;
322 const int flags_; 323 const int flags_;
323 const int l10n_message_id_; 324 const int l10n_message_id_;
324 const PermissionMessage::ID message_id_; 325 const PermissionMessage::ID message_id_;
325 const APIPermissionConstructor api_permission_constructor_; 326 const APIPermissionConstructor api_permission_constructor_;
326 }; 327 };
327 328
328 } // namespace extensions 329 } // namespace extensions
329 330
330 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ 331 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/tab_capture.idl ('k') | chrome/common/extensions/permissions/chrome_api_permissions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698