| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/host/gnubby_auth_handler.h" | 5 #include "remoting/host/gnubby_auth_handler.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/macros.h" |
| 8 | 9 |
| 9 namespace remoting { | 10 namespace remoting { |
| 10 | 11 |
| 11 namespace { | 12 namespace { |
| 12 | 13 |
| 13 class GnubbyAuthHandlerWin : public GnubbyAuthHandler { | 14 class GnubbyAuthHandlerWin : public GnubbyAuthHandler { |
| 14 private: | 15 private: |
| 15 // GnubbyAuthHandler interface. | 16 // GnubbyAuthHandler interface. |
| 16 void DeliverClientMessage(const std::string& message) override; | 17 void DeliverClientMessage(const std::string& message) override; |
| 17 void DeliverHostDataMessage(int connection_id, | 18 void DeliverHostDataMessage(int connection_id, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 38 NOTIMPLEMENTED(); | 39 NOTIMPLEMENTED(); |
| 39 } | 40 } |
| 40 | 41 |
| 41 void GnubbyAuthHandlerWin::DeliverHostDataMessage(int connection_id, | 42 void GnubbyAuthHandlerWin::DeliverHostDataMessage(int connection_id, |
| 42 const std::string& data) | 43 const std::string& data) |
| 43 const { | 44 const { |
| 44 NOTIMPLEMENTED(); | 45 NOTIMPLEMENTED(); |
| 45 } | 46 } |
| 46 | 47 |
| 47 } // namespace remoting | 48 } // namespace remoting |
| OLD | NEW |