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

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

Issue 1051333002: Add permission "mediaRouterPrivate" for the Media Router Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 kImeWindowEnabled, 133 kImeWindowEnabled,
134 kInlineInstallPrivate, 134 kInlineInstallPrivate,
135 kInput, 135 kInput,
136 kInputMethodPrivate, 136 kInputMethodPrivate,
137 kInterceptAllKeys, 137 kInterceptAllKeys,
138 kLocation, 138 kLocation,
139 kLogPrivate, 139 kLogPrivate,
140 kManagement, 140 kManagement,
141 kMediaGalleries, 141 kMediaGalleries,
142 kMediaPlayerPrivate, 142 kMediaPlayerPrivate,
143 kMediaRouterPrivate,
143 kMetricsPrivate, 144 kMetricsPrivate,
144 kMDns, 145 kMDns,
145 kMusicManagerPrivate, 146 kMusicManagerPrivate,
146 kNativeMessaging, 147 kNativeMessaging,
147 kNetworkingConfig, 148 kNetworkingConfig,
148 kNetworkingPrivate, 149 kNetworkingPrivate,
149 kNotificationProvider, 150 kNotificationProvider,
150 kNotifications, 151 kNotifications,
151 kOverrideEscFullscreen, 152 kOverrideEscFullscreen,
152 kPageCapture, 153 kPageCapture,
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 const char* const name_; 444 const char* const name_;
444 const int flags_; 445 const int flags_;
445 const int l10n_message_id_; 446 const int l10n_message_id_;
446 const PermissionMessage::ID message_id_; 447 const PermissionMessage::ID message_id_;
447 const APIPermissionConstructor api_permission_constructor_; 448 const APIPermissionConstructor api_permission_constructor_;
448 }; 449 };
449 450
450 } // namespace extensions 451 } // namespace extensions
451 452
452 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 453 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698