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

Side by Side Diff: chrome/browser/media/router/create_presentation_connection_request.h

Issue 1406013003: [Presentation API / Media Router] Clean up default pres URL logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Original patch Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_SESSION_REQUEST_H_ 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_CONNECTION_REQUEST_H_
6 #define CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_SESSION_REQUEST_H_ 6 #define CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_CONNECTION_REQUEST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h"
10 #include "chrome/browser/media/router/media_route.h" 11 #include "chrome/browser/media/router/media_route.h"
11 #include "chrome/browser/media/router/media_source.h" 12 #include "chrome/browser/media/router/media_source.h"
13 #include "chrome/browser/media/router/presentation_request.h"
14 #include "chrome/browser/media/router/render_frame_host_id.h"
12 #include "content/public/browser/presentation_service_delegate.h" 15 #include "content/public/browser/presentation_service_delegate.h"
13 #include "url/gurl.h" 16 #include "url/gurl.h"
14 17
15 namespace content { 18 namespace content {
16 struct PresentationError; 19 struct PresentationError;
17 struct PresentationSessionInfo; 20 struct PresentationSessionInfo;
18 } // namespace content 21 } // namespace content
19 22
20 namespace media_router { 23 namespace media_router {
21 24
22 // Holds parameters for creating a presentation session. 25 // Holds parameters for creating a presentation session.
23 // A request object is created by presentation_service_delegate_impl when it 26 // A request object is created by presentation_service_delegate_impl when it
24 // gets create-session request. The object is then passed to and owned by the 27 // gets create-session request. The object is then passed to and owned by the
25 // MediaRouterUI. |success_cb| will be invoked when create-session 28 // MediaRouterUI. |success_cb| will be invoked when create-session
26 // succeeds, or |error_cb| will be invoked when create-session fails or 29 // succeeds, or |error_cb| will be invoked when create-session fails or
27 // the UI closes. 30 // the UI closes.
28 class CreatePresentationSessionRequest { 31 class CreatePresentationConnectionRequest {
29 public: 32 public:
30 using PresentationSessionSuccessCallback = 33 using PresentationSessionSuccessCallback =
31 base::Callback<void(const content::PresentationSessionInfo&, 34 base::Callback<void(const content::PresentationSessionInfo&,
32 const MediaRoute::Id&)>; 35 const MediaRoute::Id&)>;
33 using PresentationSessionErrorCallback = 36 using PresentationSessionErrorCallback =
34 content::PresentationServiceDelegate::PresentationSessionErrorCallback; 37 content::PresentationSessionErrorCallback;
35
36 // |presentation_url|: The presentation URL of the request. Must be a valid 38 // |presentation_url|: The presentation URL of the request. Must be a valid
37 // URL. 39 // URL.
38 // |frame_url|: The URL of the frame that initiated the presentation request. 40 // |frame_url|: The URL of the frame that initiated the presentation request.
39 // |success_cb|: Callback to invoke when the request succeeds. Must be valid. 41 // |success_cb|: Callback to invoke when the request succeeds. Must be valid.
40 // |erorr_cb|: Callback to invoke when the request fails. Must be valid. 42 // |erorr_cb|: Callback to invoke when the request fails. Must be valid.
41 CreatePresentationSessionRequest( 43 CreatePresentationConnectionRequest(
44 const RenderFrameHostId& render_frame_host_id,
42 const std::string& presentation_url, 45 const std::string& presentation_url,
43 const GURL& frame_url, 46 const GURL& frame_url,
44 const PresentationSessionSuccessCallback& success_cb, 47 const PresentationSessionSuccessCallback& success_cb,
45 const PresentationSessionErrorCallback& error_cb); 48 const PresentationSessionErrorCallback& error_cb);
46 ~CreatePresentationSessionRequest(); 49 ~CreatePresentationConnectionRequest();
47 50
48 const MediaSource& media_source() const { return media_source_; } 51 const PresentationRequest& presentation_request() const {
49 const GURL& frame_url() const { return frame_url_; } 52 return presentation_request_;
53 }
50 54
51 // Invokes |success_cb_| or |error_cb_| with the given arguments. 55 // Invokes |success_cb_| or |error_cb_| with the given arguments.
52 // These functions can only be invoked once per instance. It is an error 56 // These functions can only be invoked once per instance. It is an error
53 // to invoke these functions more than once. 57 // to invoke these functions more than once.
54 void InvokeSuccessCallback(const std::string& presentation_id, 58 void InvokeSuccessCallback(const std::string& presentation_id,
55 const MediaRoute::Id& route_id); 59 const MediaRoute::Id& route_id);
56 void InvokeErrorCallback(const content::PresentationError& error); 60 void InvokeErrorCallback(const content::PresentationError& error);
57 61
58 // Handle route creation/joining response by invoking the right callback. 62 // Handle route creation/joining response by invoking the right callback.
59 static void HandleRouteResponse( 63 static void HandleRouteResponse(
60 scoped_ptr<CreatePresentationSessionRequest> presentation_request, 64 scoped_ptr<CreatePresentationConnectionRequest> presentation_request,
61 const MediaRoute* route, 65 const MediaRoute* route,
62 const std::string& presentation_id, 66 const std::string& presentation_id,
63 const std::string& error); 67 const std::string& error);
64 68
65 private: 69 private:
66 const MediaSource media_source_; 70 const PresentationRequest presentation_request_;
67 const GURL frame_url_;
68 PresentationSessionSuccessCallback success_cb_; 71 PresentationSessionSuccessCallback success_cb_;
69 PresentationSessionErrorCallback error_cb_; 72 PresentationSessionErrorCallback error_cb_;
70 bool cb_invoked_; 73 bool cb_invoked_;
71 74
72 DISALLOW_COPY_AND_ASSIGN(CreatePresentationSessionRequest); 75 DISALLOW_COPY_AND_ASSIGN(CreatePresentationConnectionRequest);
73 }; 76 };
74 77
75 } // namespace media_router 78 } // namespace media_router
76 79
77 #endif // CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_SESSION_REQUEST_H_ 80 #endif // CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_CONNECTION_REQUEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698