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

Side by Side Diff: chrome/browser/media/router/create_session_request.cc

Issue 1224093004: [Media Router] 2nd take on fix route response callback lifetime in UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit test Created 5 years, 5 months 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/media/router/create_session_request.h"
6
7 #include "chrome/browser/media/router/media_source_helper.h"
8
9 using content::PresentationSessionInfo;
10 using content::PresentationError;
11
12 namespace media_router {
13
14 CreateSessionRequest::CreateSessionRequest(
15 const std::string& presentation_url,
16 const std::string& presentation_id,
17 const GURL& frame_url,
18 const PresentationSessionSuccessCallback& success_cb,
19 const PresentationSessionErrorCallback& error_cb)
20 : presentation_info_(presentation_url, presentation_id),
21 media_source_(presentation_url),
22 frame_url_(frame_url),
23 success_cb_(success_cb),
24 error_cb_(error_cb),
25 cb_invoked_(false) {
26 }
27
28 CreateSessionRequest::~CreateSessionRequest() {
29 }
30
31 void CreateSessionRequest::MaybeInvokeSuccessCallback(
32 const MediaRoute::Id& route_id) {
33 if (!cb_invoked_) {
34 // Overwrite presentation ID.
35 success_cb_.Run(content::PresentationSessionInfo(
36 presentation_info_.presentation_url,
37 GetPresentationIdAndUrl(route_id).first),
38 route_id);
39 cb_invoked_ = true;
40 }
41 }
42
43 void CreateSessionRequest::MaybeInvokeErrorCallback(
44 const content::PresentationError& error) {
45 if (!cb_invoked_) {
46 error_cb_.Run(error);
47 cb_invoked_ = true;
48 }
49 }
50
51 } // namespace media_router
OLDNEW
« no previous file with comments | « chrome/browser/media/router/create_session_request.h ('k') | chrome/browser/media/router/create_session_request_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698