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_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; |
11 | 11 |
12 namespace media_router { | 12 namespace media_router { |
13 | 13 |
14 CreateSessionRequest::CreateSessionRequest( | 14 CreatePresentationSessionRequest::CreatePresentationSessionRequest( |
15 const std::string& presentation_url, | 15 const std::string& presentation_url, |
16 const std::string& presentation_id, | 16 const std::string& presentation_id, |
17 const GURL& frame_url, | 17 const GURL& frame_url, |
18 const PresentationSessionSuccessCallback& success_cb, | 18 const PresentationSessionSuccessCallback& success_cb, |
19 const PresentationSessionErrorCallback& error_cb) | 19 const PresentationSessionErrorCallback& error_cb) |
20 : presentation_info_(presentation_url, presentation_id), | 20 : presentation_info_(presentation_url, presentation_id), |
21 media_source_(presentation_url), | 21 media_source_(presentation_url), |
22 frame_url_(frame_url), | 22 frame_url_(frame_url), |
23 success_cb_(success_cb), | 23 success_cb_(success_cb), |
24 error_cb_(error_cb), | 24 error_cb_(error_cb), |
25 cb_invoked_(false) { | 25 cb_invoked_(false) { |
| 26 DCHECK(!success_cb.is_null()); |
| 27 DCHECK(!error_cb.is_null()); |
26 } | 28 } |
27 | 29 |
28 CreateSessionRequest::~CreateSessionRequest() { | 30 CreatePresentationSessionRequest::~CreatePresentationSessionRequest() { |
| 31 if (!cb_invoked_) { |
| 32 error_cb_.Run(content::PresentationError( |
| 33 content::PRESENTATION_ERROR_UNKNOWN, "Unknown error.")); |
| 34 } |
29 } | 35 } |
30 | 36 |
31 void CreateSessionRequest::MaybeInvokeSuccessCallback( | 37 void CreatePresentationSessionRequest::MaybeInvokeSuccessCallback( |
32 const MediaRoute::Id& route_id) { | 38 const MediaRoute::Id& route_id) { |
33 if (!cb_invoked_) { | 39 if (!cb_invoked_) { |
34 // Overwrite presentation ID. | 40 // Overwrite presentation ID. |
35 success_cb_.Run(content::PresentationSessionInfo( | 41 success_cb_.Run(content::PresentationSessionInfo( |
36 presentation_info_.presentation_url, | 42 presentation_info_.presentation_url, |
37 GetPresentationIdAndUrl(route_id).first), | 43 GetPresentationIdAndUrl(route_id).first), |
38 route_id); | 44 route_id); |
39 cb_invoked_ = true; | 45 cb_invoked_ = true; |
40 } | 46 } |
41 } | 47 } |
42 | 48 |
43 void CreateSessionRequest::MaybeInvokeErrorCallback( | 49 void CreatePresentationSessionRequest::MaybeInvokeErrorCallback( |
44 const content::PresentationError& error) { | 50 const content::PresentationError& error) { |
45 if (!cb_invoked_) { | 51 if (!cb_invoked_) { |
46 error_cb_.Run(error); | 52 error_cb_.Run(error); |
47 cb_invoked_ = true; | 53 cb_invoked_ = true; |
48 } | 54 } |
49 } | 55 } |
50 | 56 |
51 } // namespace media_router | 57 } // namespace media_router |
OLD | NEW |