OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "remoting/base/constants.h" | |
6 #include "remoting/protocol/session_plugin.h" | |
7 | |
8 namespace remoting { | |
9 namespace protocol { | |
10 | |
11 SessionPlugin::SessionPlugin() = default; | |
12 | |
13 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.
| |
14 | |
15 } // namespace protocol | |
16 } // namespace remoting | |
OLD | NEW |