Index: chrome/browser/media/media_permission.h |
diff --git a/chrome/browser/media/media_permission.h b/chrome/browser/media/media_permission.h |
index 400a3ca35227702ed78c227fe3d42a769fe82acd..dfd01cbbb686deb7b943703607121e97a60be98d 100644 |
--- a/chrome/browser/media/media_permission.h |
+++ b/chrome/browser/media/media_permission.h |
@@ -19,7 +19,8 @@ class MediaPermission { |
public: |
MediaPermission(ContentSettingsType content_type, |
content::MediaStreamRequestType request_type, |
- const GURL& origin, |
+ const GURL& requesting_origin, |
+ const GURL& embedding_origin, |
Profile* profile); |
// Returns the status of the permission. If the setting is |
@@ -40,7 +41,8 @@ class MediaPermission { |
const ContentSettingsType content_type_; |
const content::MediaStreamRequestType request_type_; |
- const GURL origin_; |
+ const GURL requesting_origin_; |
+ const GURL embedding_origin_; |
const std::string device_id_; |
Profile* const profile_; |