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

Unified Diff: remoting/protocol/session_plugin.cc

Issue 2586133002: [Chromoting] Implement HostExperimentSessionPlugin (Closed)
Patch Set: 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/session_plugin.cc
diff --git a/remoting/protocol/session_plugin.cc b/remoting/protocol/session_plugin.cc
new file mode 100644
index 0000000000000000000000000000000000000000..dab2d1a51fff5f7bcd324f1411eda2b27c98a9cd
--- /dev/null
+++ b/remoting/protocol/session_plugin.cc
@@ -0,0 +1,20 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/logging.h"
+#include "remoting/protocol/session_plugin.h"
+
+namespace remoting {
+namespace protocol {
+
+SessionPlugin::SessionPlugin(
+ const base::Callback<std::unique_ptr<buzz::XmlElement>()>& new_attachments)
+ : new_attachments_(new_attachments) {
+ DCHECK(new_attachments_);
+}
+
+SessionPlugin::~SessionPlugin() = default;
+
+} // namespace protocol
+} // namespace remoting
« remoting/protocol/host_experiment_session_plugin.cc ('K') | « remoting/protocol/session_plugin.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698