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

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

Issue 10919086: Wired chrome.rtcPrivate API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 kMediaGalleriesAllGalleries, 79 kMediaGalleriesAllGalleries,
80 kMediaGalleriesRead, 80 kMediaGalleriesRead,
81 kMediaPlayerPrivate, 81 kMediaPlayerPrivate,
82 kMetricsPrivate, 82 kMetricsPrivate,
83 kNotification, 83 kNotification,
84 kPageCapture, 84 kPageCapture,
85 kPlugin, 85 kPlugin,
86 kPrivacy, 86 kPrivacy,
87 kProxy, 87 kProxy,
88 kPushMessaging, 88 kPushMessaging,
89 kRtcPrivate,
89 kSerial, 90 kSerial,
90 kSocket, 91 kSocket,
91 kStorage, 92 kStorage,
92 kSystemPrivate, 93 kSystemPrivate,
93 kTab, 94 kTab,
94 kTerminalPrivate, 95 kTerminalPrivate,
95 kTopSites, 96 kTopSites,
96 kTts, 97 kTts,
97 kTtsEngine, 98 kTtsEngine,
98 kUnlimitedStorage, 99 kUnlimitedStorage,
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 const char* const name_; 246 const char* const name_;
246 const int flags_; 247 const int flags_;
247 const int l10n_message_id_; 248 const int l10n_message_id_;
248 const PermissionMessage::ID message_id_; 249 const PermissionMessage::ID message_id_;
249 const APIPermissionConstructor api_permission_constructor_; 250 const APIPermissionConstructor api_permission_constructor_;
250 }; 251 };
251 252
252 } // namespace extensions 253 } // namespace extensions
253 254
254 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ 255 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698