Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: remoting/host/gnubby_auth_handler_win.cc

Issue 138753005: Add gnubby authentication to remoting host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change JSON parsing and some log levels Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698