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

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

Issue 27283002: Identity API: Add chrome.identity.onSignInChanged routing and IDL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 7 years, 2 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 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 kFileSystem, 84 kFileSystem,
85 kFileSystemDirectory, 85 kFileSystemDirectory,
86 kFileSystemRetainEntries, 86 kFileSystemRetainEntries,
87 kFileSystemWrite, 87 kFileSystemWrite,
88 kFileSystemWriteDirectory, 88 kFileSystemWriteDirectory,
89 kFontSettings, 89 kFontSettings,
90 kFullscreen, 90 kFullscreen,
91 kGeolocation, 91 kGeolocation,
92 kHistory, 92 kHistory,
93 kIdentity, 93 kIdentity,
94 kIdentityEmail,
94 kIdentityPrivate, 95 kIdentityPrivate,
95 kIdltest, 96 kIdltest,
96 kIdle, 97 kIdle,
97 kInfobars, 98 kInfobars,
98 kInput, 99 kInput,
99 kInputMethodPrivate, 100 kInputMethodPrivate,
100 kLocation, 101 kLocation,
101 kLogPrivate, 102 kLogPrivate,
102 kManagement, 103 kManagement,
103 kMediaGalleries, 104 kMediaGalleries,
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 const char* const name_; 324 const char* const name_;
324 const int flags_; 325 const int flags_;
325 const int l10n_message_id_; 326 const int l10n_message_id_;
326 const PermissionMessage::ID message_id_; 327 const PermissionMessage::ID message_id_;
327 const APIPermissionConstructor api_permission_constructor_; 328 const APIPermissionConstructor api_permission_constructor_;
328 }; 329 };
329 330
330 } // namespace extensions 331 } // namespace extensions
331 332
332 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 333 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/permissions/chrome_api_permissions.cc ('k') | extensions/common/permissions/permission_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698