| 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
|
|
|