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

Side by Side Diff: media/base/media_permission.h

Issue 871663003: media: Add MediaPermission interface and MediaPermissionDispatcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 5 years, 10 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
« no previous file with comments | « media/base/BUILD.gn ('k') | media/base/media_permission.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 prompt). The status will be
30 // |false| if the permission has never been set.
31 virtual void HasPermission(
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 prompt) if the permission has never been set.
38 virtual void RequestPermission(
39 Type type,
40 const GURL& security_origin,
41 const PermissionStatusCB& permission_status_cb) = 0;
42
43 private:
44 DISALLOW_COPY_AND_ASSIGN(MediaPermission);
45 };
46
47 } // namespace media
48
49 #endif // MEDIA_BASE_MEDIA_PERMISSION_H_
OLDNEW
« no previous file with comments | « media/base/BUILD.gn ('k') | media/base/media_permission.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698