| Index: chrome/browser/media/router/create_presentation_connection_request.h
|
| diff --git a/chrome/browser/media/router/create_presentation_connection_request.h b/chrome/browser/media/router/create_presentation_connection_request.h
|
| index dc702af5c112de3c05f04ff9c75ed71e7131cb66..41e5da492c4e8bbbb24c28792129c8df67260055 100644
|
| --- a/chrome/browser/media/router/create_presentation_connection_request.h
|
| +++ b/chrome/browser/media/router/create_presentation_connection_request.h
|
| @@ -16,14 +16,12 @@
|
| #include "chrome/browser/media/router/render_frame_host_id.h"
|
| #include "content/public/browser/presentation_service_delegate.h"
|
|
|
| +class GURL;
|
| +
|
| namespace content {
|
| struct PresentationError;
|
| struct PresentationSessionInfo;
|
| } // namespace content
|
| -
|
| -namespace url {
|
| -class Origin;
|
| -} // namespace url
|
|
|
| namespace media_router {
|
|
|
| @@ -44,14 +42,13 @@
|
| content::PresentationSessionErrorCallback;
|
| // |presentation_url|: The presentation URL of the request. Must be a valid
|
| // URL.
|
| - // |frame_origin|: The origin of the frame that initiated the presentation
|
| - // request.
|
| + // |frame_url|: The URL of the frame that initiated the presentation request.
|
| // |success_cb|: Callback to invoke when the request succeeds. Must be valid.
|
| // |erorr_cb|: Callback to invoke when the request fails. Must be valid.
|
| CreatePresentationConnectionRequest(
|
| const RenderFrameHostId& render_frame_host_id,
|
| const std::vector<GURL>& presentation_urls,
|
| - const url::Origin& frame_origin,
|
| + const GURL& frame_url,
|
| const PresentationSessionSuccessCallback& success_cb,
|
| const PresentationSessionErrorCallback& error_cb);
|
| ~CreatePresentationConnectionRequest();
|
|
|