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

Unified Diff: remoting/protocol/pepper_session_manager.cc

Issue 9325036: Add abstract interfaces for the transport layer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix crash Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/pepper_session_manager.h ('k') | remoting/protocol/pepper_session_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/pepper_session_manager.cc
diff --git a/remoting/protocol/pepper_session_manager.cc b/remoting/protocol/pepper_session_manager.cc
index b45a315dacacbaa29e79e61f1d7cfbfaeee97a76..c8a67c6ee7d78080a063fdb6037beb613fd69619 100644
--- a/remoting/protocol/pepper_session_manager.cc
+++ b/remoting/protocol/pepper_session_manager.cc
@@ -19,8 +19,9 @@ using buzz::QName;
namespace remoting {
namespace protocol {
-PepperSessionManager::PepperSessionManager(pp::Instance* pp_instance)
- : pp_instance_(pp_instance),
+PepperSessionManager::PepperSessionManager(
+ scoped_ptr<TransportFactory> transport_factory)
+ : transport_factory_(transport_factory.Pass()),
signal_strategy_(NULL),
listener_(NULL),
ready_(false) {
« no previous file with comments | « remoting/protocol/pepper_session_manager.h ('k') | remoting/protocol/pepper_session_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698