Compute can_use_lcd_text using property trees.
[chromium-blink-merge.git] / remoting / host / gnubby_auth_handler_win.cc
blob6b8bd644fd4ce1a651746ace8a23deda2d8189db
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.
5 #include "remoting/host/gnubby_auth_handler.h"
7 #include "base/logging.h"
9 namespace remoting {
11 namespace {
13 class GnubbyAuthHandlerWin : public GnubbyAuthHandler {
14 private:
15 // GnubbyAuthHandler interface.
16 void DeliverClientMessage(const std::string& message) override;
17 void DeliverHostDataMessage(int connection_id,
18 const std::string& data) const override;
20 DISALLOW_COPY_AND_ASSIGN(GnubbyAuthHandlerWin);
23 } // namespace
25 // static
26 scoped_ptr<GnubbyAuthHandler> GnubbyAuthHandler::Create(
27 protocol::ClientStub* client_stub) {
28 return nullptr;
31 // static
32 void GnubbyAuthHandler::SetGnubbySocketName(
33 const base::FilePath& gnubby_socket_name) {
34 NOTIMPLEMENTED();
37 void GnubbyAuthHandlerWin::DeliverClientMessage(const std::string& message) {
38 NOTIMPLEMENTED();
41 void GnubbyAuthHandlerWin::DeliverHostDataMessage(int connection_id,
42 const std::string& data)
43 const {
44 NOTIMPLEMENTED();
47 } // namespace remoting