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 CHROME_BROWSER_MEDIA_MEDIA_PERMISSION_H_
6 #define CHROME_BROWSER_MEDIA_MEDIA_PERMISSION_H_
10 #include "components/content_settings/core/common/content_settings.h"
11 #include "components/content_settings/core/common/content_settings_types.h"
12 #include "content/public/common/media_stream_request.h"
17 // Represents a permission for microphone/camera access.
18 class MediaPermission
{
20 MediaPermission(ContentSettingsType content_type
,
21 content::MediaStreamRequestType request_type
,
25 // Returns the status of the permission. If the setting is
26 // CONTENT_SETTING_BLOCK, |denial_reason| will output the reason for it being
28 ContentSetting
GetPermissionStatus(
29 content::MediaStreamRequestResult
* denial_reason
) const;
31 // Returns the status of the permission as with GetPermissionStatus but also
32 // checks that the specified |device_id| is an available device.
33 ContentSetting
GetPermissionStatusWithDeviceRequired(
34 const std::string
& device_id
,
35 content::MediaStreamRequestResult
* denial_reason
) const;
38 ContentSetting
GetStoredContentSetting() const;
39 bool HasAvailableDevices(const std::string
& device_id
) const;
41 const ContentSettingsType content_type_
;
42 const content::MediaStreamRequestType request_type_
;
44 const std::string device_id_
;
45 Profile
* const profile_
;
47 DISALLOW_COPY_AND_ASSIGN(MediaPermission
);
50 #endif // CHROME_BROWSER_MEDIA_MEDIA_PERMISSION_H_