OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "remoting/host/gnubby_auth_handler.h" |
| 6 |
| 7 namespace remoting { |
| 8 |
| 9 namespace { |
| 10 |
| 11 class GnubbyAuthHandlerWin : public GnubbyAuthHandler { |
| 12 private: |
| 13 // GnubbyAuthHandler interface. |
| 14 virtual void DeliverClientMessage(const std::string& message) OVERRIDE; |
| 15 virtual void DeliverHostDataMessage(int connection_id, |
| 16 const std::string& data) const OVERRIDE; |
| 17 |
| 18 DISALLOW_COPY_AND_ASSIGN(GnubbyAuthHandlerWin); |
| 19 }; |
| 20 |
| 21 } // namespace |
| 22 |
| 23 // static |
| 24 scoped_ptr<GnubbyAuthHandler> GnubbyAuthHandler::Create( |
| 25 protocol::ClientStub* client_stub) { |
| 26 return scoped_ptr<GnubbyAuthHandler>(); |
| 27 } |
| 28 |
| 29 // static |
| 30 void GnubbyAuthHandler::SetGnubbySocketName( |
| 31 const base::FilePath& gnubby_socket_name) { |
| 32 NOTIMPLEMENTED(); |
| 33 } |
| 34 |
| 35 void GnubbyAuthHandlerPosix::DeliverClientMessage(const std::string& message) { |
| 36 NOTIMPLEMENTED(); |
| 37 } |
| 38 |
| 39 void GnubbyAuthHandlerPosix::DeliverHostDataMessage() { NOTIMPLEMENTED(); } |
| 40 |
| 41 } // namespace remoting |
OLD | NEW |