No dual_mode on Win10+ shortcuts.
[chromium-blink-merge.git] / chrome / browser / media / media_permission.h
blob013d87864525d81347569abee793be68acdb21ea
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_
8 #include <string>
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"
13 #include "url/gurl.h"
15 class Profile;
17 // Represents a permission for microphone/camera access.
18 class MediaPermission {
19 public:
20 MediaPermission(ContentSettingsType content_type,
21 content::MediaStreamRequestType request_type,
22 const GURL& origin,
23 const std::string& device_id,
24 Profile* profile);
26 // Returns the status of the permission. If the setting is
27 // CONTENT_SETTING_BLOCK, |denial_reason| will output the reason for it being
28 // blocked.
29 ContentSetting GetPermissionStatus(
30 content::MediaStreamRequestResult* denial_reason) const;
32 private:
33 ContentSetting GetStoredContentSetting() const;
34 bool HasAvailableDevices() const;
36 const ContentSettingsType content_type_;
37 const content::MediaStreamRequestType request_type_;
38 const GURL origin_;
39 const std::string device_id_;
40 Profile* const profile_;
42 DISALLOW_COPY_AND_ASSIGN(MediaPermission);
45 #endif // CHROME_BROWSER_MEDIA_MEDIA_PERMISSION_H_