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

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

Issue 23513020: Revert 221893 "Permissions for device info APIs." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 kPreferencesPrivate, 114 kPreferencesPrivate,
115 kPrivacy, 115 kPrivacy,
116 kProcesses, 116 kProcesses,
117 kProxy, 117 kProxy,
118 kPushMessaging, 118 kPushMessaging,
119 kRecoveryPrivate, 119 kRecoveryPrivate,
120 kRtcPrivate, 120 kRtcPrivate,
121 kScreensaver, 121 kScreensaver,
122 kSerial, 122 kSerial,
123 kSessions, 123 kSessions,
124 kSignedInDevices,
125 kSocket, 124 kSocket,
126 kSocketsUdp, 125 kSocketsUdp,
127 kStorage, 126 kStorage,
128 kStreamsPrivate, 127 kStreamsPrivate,
129 kSyncFileSystem, 128 kSyncFileSystem,
130 kSystemPrivate, 129 kSystemPrivate,
131 kSystemIndicator, 130 kSystemIndicator,
132 kSystemDisplay, 131 kSystemDisplay,
133 kSystemStorage, 132 kSystemStorage,
134 kTab, 133 kTab,
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 const char* const name_; 319 const char* const name_;
321 const int flags_; 320 const int flags_;
322 const int l10n_message_id_; 321 const int l10n_message_id_;
323 const PermissionMessage::ID message_id_; 322 const PermissionMessage::ID message_id_;
324 const APIPermissionConstructor api_permission_constructor_; 323 const APIPermissionConstructor api_permission_constructor_;
325 }; 324 };
326 325
327 } // namespace extensions 326 } // namespace extensions
328 327
329 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ 328 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698