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

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

Issue 62763003: Leave fullscreen mode in an app window when ESC key is pressed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments 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
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 kManagement, 104 kManagement,
105 kMediaGalleries, 105 kMediaGalleries,
106 kMediaGalleriesPrivate, 106 kMediaGalleriesPrivate,
107 kMediaPlayerPrivate, 107 kMediaPlayerPrivate,
108 kMetricsPrivate, 108 kMetricsPrivate,
109 kMDns, 109 kMDns,
110 kMusicManagerPrivate, 110 kMusicManagerPrivate,
111 kNativeMessaging, 111 kNativeMessaging,
112 kNetworkingPrivate, 112 kNetworkingPrivate,
113 kNotification, 113 kNotification,
114 kOverrideEscFullscreen,
114 kPageCapture, 115 kPageCapture,
115 kPointerLock, 116 kPointerLock,
116 kPlugin, 117 kPlugin,
117 kPower, 118 kPower,
118 kPreferencesPrivate, 119 kPreferencesPrivate,
119 kPrincipalsPrivate, 120 kPrincipalsPrivate,
120 kPrivacy, 121 kPrivacy,
121 kProcesses, 122 kProcesses,
122 kProxy, 123 kProxy,
123 kPushMessaging, 124 kPushMessaging,
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 const char* const name_; 330 const char* const name_;
330 const int flags_; 331 const int flags_;
331 const int l10n_message_id_; 332 const int l10n_message_id_;
332 const PermissionMessage::ID message_id_; 333 const PermissionMessage::ID message_id_;
333 const APIPermissionConstructor api_permission_constructor_; 334 const APIPermissionConstructor api_permission_constructor_;
334 }; 335 };
335 336
336 } // namespace extensions 337 } // namespace extensions
337 338
338 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 339 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698