Chromium Code Reviews| OLD | NEW |
|---|---|
| 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_SESSION_REQUEST_H_ |
| 6 #define CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_SESSION_REQUEST_H_ | 6 #define CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_SESSION_REQUEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "chrome/browser/media/router/media_route.h" | 10 #include "chrome/browser/media/router/media_route.h" |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 // Holds parameters for creating a presentation session. | 22 // Holds parameters for creating a presentation session. |
| 23 // A request object is created by presentation_service_delegate_impl when it | 23 // 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 | 24 // gets create-session request. The object is then passed to and owned by the |
| 25 // MediaRouterUI. |success_cb| will be invoked when create-session | 25 // MediaRouterUI. |success_cb| will be invoked when create-session |
| 26 // succeeds, or |error_cb| will be invoked when create-session fails or | 26 // succeeds, or |error_cb| will be invoked when create-session fails or |
| 27 // the UI closes. | 27 // the UI closes. |
| 28 class CreatePresentationSessionRequest { | 28 class CreatePresentationSessionRequest { |
| 29 public: | 29 public: |
| 30 using PresentationSessionSuccessCallback = | 30 using PresentationSessionSuccessCallback = |
| 31 base::Callback<void(const content::PresentationSessionInfo&, | 31 base::Callback<void(const content::PresentationSessionInfo&, |
| 32 const MediaRoute::Id&)>; | 32 const MediaRoute::Id&, |
| 33 bool)>; | |
| 33 using PresentationSessionErrorCallback = | 34 using PresentationSessionErrorCallback = |
| 34 content::PresentationServiceDelegate::PresentationSessionErrorCallback; | 35 content::PresentationServiceDelegate::PresentationSessionErrorCallback; |
| 35 | 36 |
| 36 // |presentation_url|: The presentation URL of the request. Must be a valid | 37 // |presentation_url|: The presentation URL of the request. Must be a valid |
| 37 // URL. | 38 // URL. |
| 38 // |frame_url|: The URL of the frame that initiated the presentation request. | 39 // |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. | 40 // |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. | 41 // |erorr_cb|: Callback to invoke when the request fails. Must be valid. |
| 41 CreatePresentationSessionRequest( | 42 CreatePresentationSessionRequest( |
| 42 const std::string& presentation_url, | 43 const std::string& presentation_url, |
| 43 const GURL& frame_url, | 44 const GURL& frame_url, |
| 44 const PresentationSessionSuccessCallback& success_cb, | 45 const PresentationSessionSuccessCallback& success_cb, |
| 45 const PresentationSessionErrorCallback& error_cb); | 46 const PresentationSessionErrorCallback& error_cb); |
| 46 ~CreatePresentationSessionRequest(); | 47 ~CreatePresentationSessionRequest(); |
| 47 | 48 |
| 48 const MediaSource& media_source() const { return media_source_; } | 49 const MediaSource& media_source() const { return media_source_; } |
| 49 const GURL& frame_url() const { return frame_url_; } | 50 const GURL& frame_url() const { return frame_url_; } |
| 50 | 51 |
| 51 // Invokes |success_cb_| or |error_cb_| with the given arguments. | 52 // Invokes |success_cb_| or |error_cb_| with the given arguments. |
| 52 // These functions can only be invoked once per instance. It is an error | 53 // These functions can only be invoked once per instance. It is an error |
| 53 // to invoke these functions more than once. | 54 // to invoke these functions more than once. |
| 54 void InvokeSuccessCallback(const std::string& presentation_id, | 55 void InvokeSuccessCallback(const std::string& presentation_id, |
| 55 const MediaRoute::Id& route_id); | 56 const MediaRoute::Id& route_id, |
| 57 bool is_one_ua_presentation); | |
|
mark a. foltz
2015/09/11 23:24:20
ISTM the "is_one_ua_presentation" is a flag that c
whywhat
2015/09/14 15:20:39
+1
miu
2015/09/17 00:09:20
+1 too, due to the fact that this bool argument is
imcheng
2015/09/26 01:21:57
Done.
imcheng
2015/09/26 01:21:57
Done.
imcheng
2015/09/26 01:21:57
Done.
| |
| 56 void InvokeErrorCallback(const content::PresentationError& error); | 58 void InvokeErrorCallback(const content::PresentationError& error); |
| 57 | 59 |
| 58 // Handle route creation/joining response by invoking the right callback. | 60 // Handle route creation/joining response by invoking the right callback. |
| 59 static void HandleRouteResponse( | 61 static void HandleRouteResponse( |
| 60 scoped_ptr<CreatePresentationSessionRequest> presentation_request, | 62 scoped_ptr<CreatePresentationSessionRequest> presentation_request, |
| 61 const MediaRoute* route, | 63 const MediaRoute* route, |
| 62 const std::string& presentation_id, | 64 const std::string& presentation_id, |
| 63 const std::string& error); | 65 const std::string& error, |
| 66 bool is_one_ua_presentation); | |
| 64 | 67 |
| 65 private: | 68 private: |
| 66 const MediaSource media_source_; | 69 const MediaSource media_source_; |
| 67 const GURL frame_url_; | 70 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(CreatePresentationSessionRequest); |
| 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_SESSION_REQUEST_H_ |
| OLD | NEW |