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

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

Issue 94093013: Add documentation for the chrome.sockets API and manifest key. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 5 #ifndef EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
6 #define EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 6 #define EXTENSIONS_COMMON_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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 kProcesses, 125 kProcesses,
126 kProxy, 126 kProxy,
127 kPushMessaging, 127 kPushMessaging,
128 kImageWriterPrivate, 128 kImageWriterPrivate,
129 kRtcPrivate, 129 kRtcPrivate,
130 kSearchProvider, 130 kSearchProvider,
131 kSerial, 131 kSerial,
132 kSessions, 132 kSessions,
133 kSignedInDevices, 133 kSignedInDevices,
134 kSocket, 134 kSocket,
135 kSocketsUdp,
136 kStartupPages, 135 kStartupPages,
137 kStorage, 136 kStorage,
138 kStreamsPrivate, 137 kStreamsPrivate,
139 kSyncFileSystem, 138 kSyncFileSystem,
140 kSystemPrivate, 139 kSystemPrivate,
141 kSystemIndicator, 140 kSystemIndicator,
142 kSystemDisplay, 141 kSystemDisplay,
143 kSystemStorage, 142 kSystemStorage,
144 kTab, 143 kTab,
145 kTabCapture, 144 kTabCapture,
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 const char* const name_; 333 const char* const name_;
335 const int flags_; 334 const int flags_;
336 const int l10n_message_id_; 335 const int l10n_message_id_;
337 const PermissionMessage::ID message_id_; 336 const PermissionMessage::ID message_id_;
338 const APIPermissionConstructor api_permission_constructor_; 337 const APIPermissionConstructor api_permission_constructor_;
339 }; 338 };
340 339
341 } // namespace extensions 340 } // namespace extensions
342 341
343 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 342 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698