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

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

Issue 21115004: extensions: Remove chrome.webSocketProxyPrivate API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 kUnlimitedStorage, 129 kUnlimitedStorage,
130 kUsb, 130 kUsb,
131 kUsbDevice, 131 kUsbDevice,
132 kVideoCapture, 132 kVideoCapture,
133 kWallpaperPrivate, 133 kWallpaperPrivate,
134 kWebConnectable, // for externally_connectable manifest key 134 kWebConnectable, // for externally_connectable manifest key
135 kWebNavigation, 135 kWebNavigation,
136 kWebRequest, 136 kWebRequest,
137 kWebRequestBlocking, 137 kWebRequestBlocking,
138 kWebRequestInternal, 138 kWebRequestInternal,
139 kWebSocketProxyPrivate,
140 kWebstorePrivate, 139 kWebstorePrivate,
141 kWebView, 140 kWebView,
142 kSystemCpu, 141 kSystemCpu,
143 kSystemMemory, 142 kSystemMemory,
144 kEnumBoundary 143 kEnumBoundary
145 }; 144 };
146 145
147 struct CheckParam { 146 struct CheckParam {
148 }; 147 };
149 148
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 const char* const name_; 306 const char* const name_;
308 const int flags_; 307 const int flags_;
309 const int l10n_message_id_; 308 const int l10n_message_id_;
310 const PermissionMessage::ID message_id_; 309 const PermissionMessage::ID message_id_;
311 const APIPermissionConstructor api_permission_constructor_; 310 const APIPermissionConstructor api_permission_constructor_;
312 }; 311 };
313 312
314 } // namespace extensions 313 } // namespace extensions
315 314
316 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ 315 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698