Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MEDIA_BASE_MEDIA_PERMISSION_H_ | |
| 6 #define MEDIA_BASE_MEDIA_PERMISSION_H_ | |
| 7 | |
| 8 #include "base/callback.h" | |
| 9 #include "base/macros.h" | |
| 10 #include "media/base/media_export.h" | |
| 11 | |
| 12 class GURL; | |
| 13 | |
| 14 namespace media { | |
| 15 | |
| 16 // Interface to handle media related permission checks and requests. | |
| 17 class MEDIA_EXPORT MediaPermission { | |
| 18 public: | |
| 19 typedef base::Callback<void(bool)> PermissionStatusCB; | |
| 20 | |
| 21 enum Type { | |
| 22 PROTECTED_MEDIA_IDENTIFIER, | |
| 23 }; | |
| 24 | |
| 25 MediaPermission(); | |
| 26 virtual ~MediaPermission(); | |
| 27 | |
| 28 // Checks whether |type| is permitted for |security_origion| without | |
| 29 // triggering user interaction (e.g. permission info bar). The status will be | |
| 30 // |false| if the permission has never been set. | |
| 31 virtual void HasPermission( | |
|
ddorwin
2015/01/26 23:33:46
"Has" seems wrong here. To make the intent clear,
xhwang
2015/01/27 00:01:58
Acknowledged.
| |
| 32 Type type, | |
| 33 const GURL& security_origin, | |
| 34 const PermissionStatusCB& permission_status_cb) = 0; | |
| 35 | |
| 36 // Requests |type| permission for |security_origion|. This may trigger user | |
| 37 // interaction (e.g. permission info bar) if the permission has never been | |
|
ddorwin
2015/01/26 23:33:46
nit: s/info bar/prompt/ (or request) to be more ge
xhwang
2015/01/27 00:01:58
Done.
| |
| 38 // set. | |
| 39 virtual void RequestPermission( | |
| 40 Type type, | |
| 41 const GURL& security_origin, | |
| 42 const PermissionStatusCB& permission_status_cb) = 0; | |
| 43 | |
| 44 private: | |
| 45 DISALLOW_COPY_AND_ASSIGN(MediaPermission); | |
| 46 }; | |
| 47 | |
| 48 } // namespace media | |
| 49 | |
| 50 #endif // MEDIA_BASE_MEDIA_PERMISSION_H_ | |
| OLD | NEW |