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

Unified Diff: remoting/protocol/protocol_mock_objects.cc

Issue 2586403003: [Chromoting] Add SessionPlugin in JingleSession (Closed)
Patch Set: Resolve review comments Created 4 years 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
Index: remoting/protocol/protocol_mock_objects.cc
diff --git a/remoting/protocol/protocol_mock_objects.cc b/remoting/protocol/protocol_mock_objects.cc
index 8782368cb53486c1983ab21c68fefb92b7f30599..fa7ee71898c026275e2db6f0f4d862a98064dad9 100644
--- a/remoting/protocol/protocol_mock_objects.cc
+++ b/remoting/protocol/protocol_mock_objects.cc
@@ -4,10 +4,12 @@
#include "remoting/protocol/protocol_mock_objects.h"
+#include <memory>
#include <utility>
#include "base/logging.h"
#include "base/threading/thread_task_runner_handle.h"
+#include "remoting/protocol/session_plugin.h"
#include "remoting/protocol/video_stream.h"
namespace remoting {
@@ -49,6 +51,10 @@ MockSession::MockSession() {}
MockSession::~MockSession() {}
+void MockSession::AddPlugin(std::unique_ptr<SessionPlugin> plugin) {
+ NOTIMPLEMENTED();
+}
+
MockSessionManager::MockSessionManager() {}
MockSessionManager::~MockSessionManager() {}

Powered by Google App Engine
This is Rietveld 408576698