Chromium Code Reviews| 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..94bbc11a6cf5e97027db5876caa5a7a55429e9b4 |
| --- /dev/null |
| +++ b/remoting/protocol/session_plugin.cc |
| @@ -0,0 +1,16 @@ |
| +// 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 "remoting/base/constants.h" |
| +#include "remoting/protocol/session_plugin.h" |
| + |
| +namespace remoting { |
| +namespace protocol { |
| + |
| +SessionPlugin::SessionPlugin() = default; |
| + |
| +SessionPlugin::~SessionPlugin() = default; |
|
Sergey Ulanov
2016/12/23 00:14:52
constructor/destructor for interfaces can be inlin
Hzj_jie
2016/12/24 00:09:55
Done.
|
| + |
| +} // namespace protocol |
| +} // namespace remoting |