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

Unified Diff: chrome/browser/media/media_permission.h

Issue 2307083002: Cleanup: move WebRTC related files from chrome/browser/media to chrome/browser/media/webrtc/ (Closed)
Patch Set: Removed file wrongly resuscitated during rebase Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/media/media_capture_devices_dispatcher.cc ('k') | chrome/browser/media/media_permission.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/media_permission.h
diff --git a/chrome/browser/media/media_permission.h b/chrome/browser/media/media_permission.h
deleted file mode 100644
index 0090d029145c90a4343a17f23d403f3b45493594..0000000000000000000000000000000000000000
--- a/chrome/browser/media/media_permission.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_MEDIA_MEDIA_PERMISSION_H_
-#define CHROME_BROWSER_MEDIA_MEDIA_PERMISSION_H_
-
-#include <string>
-
-#include "base/macros.h"
-#include "components/content_settings/core/common/content_settings.h"
-#include "components/content_settings/core/common/content_settings_types.h"
-#include "content/public/common/media_stream_request.h"
-#include "url/gurl.h"
-
-class MediaStreamDevicePermissionContext;
-class Profile;
-
-// Represents a permission for microphone/camera access.
-class MediaPermission {
- public:
- MediaPermission(ContentSettingsType content_type,
- const GURL& requesting_origin,
- const GURL& embedding_origin,
- Profile* profile);
-
- // Returns the status of the permission. If the setting is
- // CONTENT_SETTING_BLOCK, |denial_reason| will output the reason for it being
- // blocked.
- ContentSetting GetPermissionStatus(
- content::MediaStreamRequestResult* denial_reason) const;
-
- // Returns the status of the permission as with GetPermissionStatus but also
- // checks that the specified |device_id| is an available device.
- ContentSetting GetPermissionStatusWithDeviceRequired(
- const std::string& device_id,
- content::MediaStreamRequestResult* denial_reason) const;
-
- private:
- ContentSetting GetStoredContentSetting(
- MediaStreamDevicePermissionContext* media_device_permission_context)
- const;
- bool HasAvailableDevices(const std::string& device_id) const;
-
- const ContentSettingsType content_type_;
- const GURL requesting_origin_;
- const GURL embedding_origin_;
- const std::string device_id_;
- Profile* const profile_;
-
- DISALLOW_COPY_AND_ASSIGN(MediaPermission);
-};
-
-#endif // CHROME_BROWSER_MEDIA_MEDIA_PERMISSION_H_
« no previous file with comments | « chrome/browser/media/media_capture_devices_dispatcher.cc ('k') | chrome/browser/media/media_permission.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698