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

Side by Side Diff: extensions/renderer/api/display_source/display_source_session.cc

Issue 1730583002: [chrome.displaySource] further implementation of call completion callbacks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from Antony Created 4 years, 9 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
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 "extensions/renderer/api/display_source/display_source_session.h" 5 #include "extensions/renderer/api/display_source/display_source_session.h"
6 6
7 #if defined(ENABLE_WIFI_DISPLAY) 7 #if defined(ENABLE_WIFI_DISPLAY)
8 #include "extensions/renderer/api/display_source/wifi_display/wifi_display_sessi on.h" 8 #include "extensions/renderer/api/display_source/wifi_display/wifi_display_sessi on.h"
9 #endif 9 #endif
10 10
11 namespace extensions { 11 namespace extensions {
12 12
13 DisplaySourceSessionParams::DisplaySourceSessionParams() 13 DisplaySourceSessionParams::DisplaySourceSessionParams()
14 : auth_method(api::display_source::AUTHENTICATION_METHOD_NONE) { 14 : auth_method(api::display_source::AUTHENTICATION_METHOD_NONE) {
15 } 15 }
16 16
17 DisplaySourceSessionParams::~DisplaySourceSessionParams() = default; 17 DisplaySourceSessionParams::~DisplaySourceSessionParams() = default;
18 18
19 DisplaySourceSession::DisplaySourceSession() 19 DisplaySourceSession::DisplaySourceSession()
20 : state_(Idle) { 20 : state_(Idle) {
21 } 21 }
22 22
23 DisplaySourceSession::~DisplaySourceSession() = default; 23 DisplaySourceSession::~DisplaySourceSession() = default;
24 24
25 void DisplaySourceSession::SetCallbacks( 25 void DisplaySourceSession::SetNotificationCallbacks(
26 const SinkIdCallback& started_callback, 26 const base::Closure& terminated_callback,
27 const SinkIdCallback& terminated_callback,
28 const ErrorCallback& error_callback) { 27 const ErrorCallback& error_callback) {
29 DCHECK(started_callback_.is_null());
30 DCHECK(terminated_callback_.is_null()); 28 DCHECK(terminated_callback_.is_null());
31 DCHECK(error_callback_.is_null()); 29 DCHECK(error_callback_.is_null());
32 30
33 started_callback_ = started_callback;
34 terminated_callback_ = terminated_callback; 31 terminated_callback_ = terminated_callback;
35 error_callback_ = error_callback; 32 error_callback_ = error_callback;
36 } 33 }
37 34
38 scoped_ptr<DisplaySourceSession> DisplaySourceSessionFactory::CreateSession( 35 scoped_ptr<DisplaySourceSession> DisplaySourceSessionFactory::CreateSession(
39 const DisplaySourceSessionParams& params) { 36 const DisplaySourceSessionParams& params) {
40 #if defined(ENABLE_WIFI_DISPLAY) 37 #if defined(ENABLE_WIFI_DISPLAY)
41 return scoped_ptr<DisplaySourceSession>(new WiFiDisplaySession(params)); 38 return scoped_ptr<DisplaySourceSession>(new WiFiDisplaySession(params));
42 #endif 39 #endif
43 return nullptr; 40 return nullptr;
44 } 41 }
45 42
46 } // namespace extensions 43 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698