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

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

Issue 21022018: Sessions API - previously Session Restore API. Supports restoring currently open foreign windows an… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 kPlugin, 106 kPlugin,
107 kPower, 107 kPower,
108 kPreferencesPrivate, 108 kPreferencesPrivate,
109 kPrivacy, 109 kPrivacy,
110 kProxy, 110 kProxy,
111 kPushMessaging, 111 kPushMessaging,
112 kRecoveryPrivate, 112 kRecoveryPrivate,
113 kRtcPrivate, 113 kRtcPrivate,
114 kScreensaver, 114 kScreensaver,
115 kSerial, 115 kSerial,
116 kSessionRestore, 116 kSessions,
117 kSocket, 117 kSocket,
118 kStorage, 118 kStorage,
119 kStreamsPrivate, 119 kStreamsPrivate,
120 kSyncFileSystem, 120 kSyncFileSystem,
121 kSystemPrivate, 121 kSystemPrivate,
122 kSystemIndicator, 122 kSystemIndicator,
123 kSystemDisplay, 123 kSystemDisplay,
124 kSystemStorage, 124 kSystemStorage,
125 kTab, 125 kTab,
126 kTabCapture, 126 kTabCapture,
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 const char* const name_; 310 const char* const name_;
311 const int flags_; 311 const int flags_;
312 const int l10n_message_id_; 312 const int l10n_message_id_;
313 const PermissionMessage::ID message_id_; 313 const PermissionMessage::ID message_id_;
314 const APIPermissionConstructor api_permission_constructor_; 314 const APIPermissionConstructor api_permission_constructor_;
315 }; 315 };
316 316
317 } // namespace extensions 317 } // namespace extensions
318 318
319 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ 319 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698