| 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 17 matching lines...) Expand all Loading... |
| 28 } | 28 } |
| 29 | 29 |
| 30 CreatePresentationSessionRequest::~CreatePresentationSessionRequest() { | 30 CreatePresentationSessionRequest::~CreatePresentationSessionRequest() { |
| 31 if (!cb_invoked_) { | 31 if (!cb_invoked_) { |
| 32 error_cb_.Run(content::PresentationError( | 32 error_cb_.Run(content::PresentationError( |
| 33 content::PRESENTATION_ERROR_UNKNOWN, "Unknown error.")); | 33 content::PRESENTATION_ERROR_UNKNOWN, "Unknown error.")); |
| 34 } | 34 } |
| 35 } | 35 } |
| 36 | 36 |
| 37 void CreatePresentationSessionRequest::MaybeInvokeSuccessCallback( | 37 void CreatePresentationSessionRequest::MaybeInvokeSuccessCallback( |
| 38 const std::string& presentation_id, |
| 38 const MediaRoute::Id& route_id) { | 39 const MediaRoute::Id& route_id) { |
| 39 if (!cb_invoked_) { | 40 if (!cb_invoked_) { |
| 40 // Overwrite presentation ID. | 41 // Overwrite presentation ID. |
| 41 success_cb_.Run(content::PresentationSessionInfo( | 42 success_cb_.Run(content::PresentationSessionInfo( |
| 42 presentation_info_.presentation_url, | 43 presentation_info_.presentation_url, presentation_id), |
| 43 GetPresentationIdAndUrl(route_id).first), | |
| 44 route_id); | 44 route_id); |
| 45 cb_invoked_ = true; | 45 cb_invoked_ = true; |
| 46 } | 46 } |
| 47 } | 47 } |
| 48 | 48 |
| 49 void CreatePresentationSessionRequest::MaybeInvokeErrorCallback( | 49 void CreatePresentationSessionRequest::MaybeInvokeErrorCallback( |
| 50 const content::PresentationError& error) { | 50 const content::PresentationError& error) { |
| 51 if (!cb_invoked_) { | 51 if (!cb_invoked_) { |
| 52 error_cb_.Run(error); | 52 error_cb_.Run(error); |
| 53 cb_invoked_ = true; | 53 cb_invoked_ = true; |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 | 56 |
| 57 } // namespace media_router | 57 } // namespace media_router |
| OLD | NEW |