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

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

Issue 18863014: [SystemInfo API] Rename systemInfo Memory API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add docs redirect. Created 7 years, 5 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 (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 kWallpaperPrivate, 129 kWallpaperPrivate,
130 kWebConnectable, // for externally_connectable manifest key 130 kWebConnectable, // for externally_connectable manifest key
131 kWebNavigation, 131 kWebNavigation,
132 kWebRequest, 132 kWebRequest,
133 kWebRequestBlocking, 133 kWebRequestBlocking,
134 kWebRequestInternal, 134 kWebRequestInternal,
135 kWebSocketProxyPrivate, 135 kWebSocketProxyPrivate,
136 kWebstorePrivate, 136 kWebstorePrivate,
137 kWebView, 137 kWebView,
138 kSystemInfoCpu, 138 kSystemInfoCpu,
139 kSystemInfoMemory, 139 kSystemMemory,
140 kEnumBoundary 140 kEnumBoundary
141 }; 141 };
142 142
143 struct CheckParam { 143 struct CheckParam {
144 }; 144 };
145 145
146 explicit APIPermission(const APIPermissionInfo* info); 146 explicit APIPermission(const APIPermissionInfo* info);
147 147
148 virtual ~APIPermission(); 148 virtual ~APIPermission();
149 149
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 const char* const name_; 293 const char* const name_;
294 const int flags_; 294 const int flags_;
295 const int l10n_message_id_; 295 const int l10n_message_id_;
296 const PermissionMessage::ID message_id_; 296 const PermissionMessage::ID message_id_;
297 const APIPermissionConstructor api_permission_constructor_; 297 const APIPermissionConstructor api_permission_constructor_;
298 }; 298 };
299 299
300 } // namespace extensions 300 } // namespace extensions
301 301
302 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ 302 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698