[App banners] Add RAPPOR support
[chromium-blink-merge.git] / media / base / media_permission.h
blob760ba0caa9f3fe1a2f676acb35c17926c6b611b2
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.
5 #ifndef MEDIA_BASE_MEDIA_PERMISSION_H_
6 #define MEDIA_BASE_MEDIA_PERMISSION_H_
8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "media/base/media_export.h"
12 class GURL;
14 namespace media {
16 // Interface to handle media related permission checks and requests.
17 class MEDIA_EXPORT MediaPermission {
18 public:
19 typedef base::Callback<void(bool)> PermissionStatusCB;
21 enum Type {
22 PROTECTED_MEDIA_IDENTIFIER,
25 MediaPermission();
26 virtual ~MediaPermission();
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;
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;
43 private:
44 DISALLOW_COPY_AND_ASSIGN(MediaPermission);
47 } // namespace media
49 #endif // MEDIA_BASE_MEDIA_PERMISSION_H_