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

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

Issue 60583003: The chrome.screenlockPrivate API allows select apps to control the ChromeOS ScreenLocker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clang Created 7 years, 1 month 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 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 kWebConnectable, // for externally_connectable manifest key 154 kWebConnectable, // for externally_connectable manifest key
155 kWebNavigation, 155 kWebNavigation,
156 kWebRequest, 156 kWebRequest,
157 kWebRequestBlocking, 157 kWebRequestBlocking,
158 kWebRequestInternal, 158 kWebRequestInternal,
159 kWebRtc, 159 kWebRtc,
160 kWebrtcAudioPrivate, 160 kWebrtcAudioPrivate,
161 kWebrtcLoggingPrivate, 161 kWebrtcLoggingPrivate,
162 kWebstorePrivate, 162 kWebstorePrivate,
163 kWebView, 163 kWebView,
164 kScreenlockPrivate,
164 kSystemCpu, 165 kSystemCpu,
165 kSystemMemory, 166 kSystemMemory,
166 kSystemInfoCpu, 167 kSystemInfoCpu,
167 kSystemInfoMemory, 168 kSystemInfoMemory,
168 kEnumBoundary 169 kEnumBoundary
169 }; 170 };
170 171
171 struct CheckParam { 172 struct CheckParam {
172 }; 173 };
173 174
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 const char* const name_; 329 const char* const name_;
329 const int flags_; 330 const int flags_;
330 const int l10n_message_id_; 331 const int l10n_message_id_;
331 const PermissionMessage::ID message_id_; 332 const PermissionMessage::ID message_id_;
332 const APIPermissionConstructor api_permission_constructor_; 333 const APIPermissionConstructor api_permission_constructor_;
333 }; 334 };
334 335
335 } // namespace extensions 336 } // namespace extensions
336 337
337 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 338 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/screenlockPrivate/test.js ('k') | extensions/common/permissions/permission_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698