| 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 #include "chrome/browser/media/router/create_presentation_session_request.h" | 5 #include "chrome/browser/media/router/create_presentation_session_request.h" |
| 6 | 6 |
| 7 #include "chrome/browser/media/router/media_source_helper.h" | 7 #include "chrome/browser/media/router/media_source_helper.h" |
| 8 | 8 |
| 9 using content::PresentationSessionInfo; | 9 using content::PresentationSessionInfo; |
| 10 using content::PresentationError; | 10 using content::PresentationError; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 CreatePresentationSessionRequest::~CreatePresentationSessionRequest() { | 28 CreatePresentationSessionRequest::~CreatePresentationSessionRequest() { |
| 29 if (!cb_invoked_) { | 29 if (!cb_invoked_) { |
| 30 error_cb_.Run(content::PresentationError( | 30 error_cb_.Run(content::PresentationError( |
| 31 content::PRESENTATION_ERROR_UNKNOWN, "Unknown error.")); | 31 content::PRESENTATION_ERROR_UNKNOWN, "Unknown error.")); |
| 32 } | 32 } |
| 33 } | 33 } |
| 34 | 34 |
| 35 void CreatePresentationSessionRequest::InvokeSuccessCallback( | 35 void CreatePresentationSessionRequest::InvokeSuccessCallback( |
| 36 const std::string& presentation_id, | 36 const std::string& presentation_id, |
| 37 const MediaRoute::Id& route_id) { | 37 const MediaRoute::Id& route_id, |
| 38 bool is_one_ua_presentation) { |
| 38 DCHECK(!cb_invoked_); | 39 DCHECK(!cb_invoked_); |
| 39 if (!cb_invoked_) { | 40 if (!cb_invoked_) { |
| 40 // Overwrite presentation ID. | 41 // Overwrite presentation ID. |
| 41 success_cb_.Run( | 42 success_cb_.Run( |
| 42 content::PresentationSessionInfo( | 43 content::PresentationSessionInfo( |
| 43 PresentationUrlFromMediaSource(media_source_), presentation_id), | 44 PresentationUrlFromMediaSource(media_source_), presentation_id), |
| 44 route_id); | 45 route_id, is_one_ua_presentation); |
| 45 cb_invoked_ = true; | 46 cb_invoked_ = true; |
| 46 } | 47 } |
| 47 } | 48 } |
| 48 | 49 |
| 49 void CreatePresentationSessionRequest::InvokeErrorCallback( | 50 void CreatePresentationSessionRequest::InvokeErrorCallback( |
| 50 const content::PresentationError& error) { | 51 const content::PresentationError& error) { |
| 51 DCHECK(!cb_invoked_); | 52 DCHECK(!cb_invoked_); |
| 52 if (!cb_invoked_) { | 53 if (!cb_invoked_) { |
| 53 error_cb_.Run(error); | 54 error_cb_.Run(error); |
| 54 cb_invoked_ = true; | 55 cb_invoked_ = true; |
| 55 } | 56 } |
| 56 } | 57 } |
| 57 | 58 |
| 58 // static | 59 // static |
| 59 void CreatePresentationSessionRequest::HandleRouteResponse( | 60 void CreatePresentationSessionRequest::HandleRouteResponse( |
| 60 scoped_ptr<CreatePresentationSessionRequest> presentation_request, | 61 scoped_ptr<CreatePresentationSessionRequest> presentation_request, |
| 61 const MediaRoute* route, | 62 const MediaRoute* route, |
| 62 const std::string& presentation_id, | 63 const std::string& presentation_id, |
| 63 const std::string& error) { | 64 const std::string& error, |
| 65 bool is_one_ua_presentation) { |
| 64 if (!route) { | 66 if (!route) { |
| 65 presentation_request->InvokeErrorCallback( | 67 presentation_request->InvokeErrorCallback( |
| 66 content::PresentationError(content::PRESENTATION_ERROR_UNKNOWN, error)); | 68 content::PresentationError(content::PRESENTATION_ERROR_UNKNOWN, error)); |
| 67 } else { | 69 } else { |
| 68 presentation_request->InvokeSuccessCallback(presentation_id, | 70 presentation_request->InvokeSuccessCallback( |
| 69 route->media_route_id()); | 71 presentation_id, route->media_route_id(), is_one_ua_presentation); |
| 70 } | 72 } |
| 71 } | 73 } |
| 72 | 74 |
| 73 } // namespace media_router | 75 } // namespace media_router |
| OLD | NEW |