| 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 #ifndef REMOTING_HOST_GNUBBY_AUTH_HANDLER_POSIX_H_ | 5 #ifndef REMOTING_HOST_GNUBBY_AUTH_HANDLER_POSIX_H_ |
| 6 #define REMOTING_HOST_GNUBBY_AUTH_HANDLER_POSIX_H_ | 6 #define REMOTING_HOST_GNUBBY_AUTH_HANDLER_POSIX_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <string> | 11 #include <string> |
| 10 | 12 |
| 11 #include "base/macros.h" | 13 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/threading/non_thread_safe.h" | 15 #include "base/threading/non_thread_safe.h" |
| 14 #include "net/base/completion_callback.h" | 16 #include "net/base/completion_callback.h" |
| 15 #include "net/socket/stream_socket.h" | 17 #include "net/socket/stream_socket.h" |
| 16 #include "remoting/host/gnubby_auth_handler.h" | 18 #include "remoting/host/gnubby_auth_handler.h" |
| 17 | 19 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 92 |
| 91 // Timeout used for a request. | 93 // Timeout used for a request. |
| 92 base::TimeDelta request_timeout_; | 94 base::TimeDelta request_timeout_; |
| 93 | 95 |
| 94 DISALLOW_COPY_AND_ASSIGN(GnubbyAuthHandlerPosix); | 96 DISALLOW_COPY_AND_ASSIGN(GnubbyAuthHandlerPosix); |
| 95 }; | 97 }; |
| 96 | 98 |
| 97 } // namespace remoting | 99 } // namespace remoting |
| 98 | 100 |
| 99 #endif // REMOTING_HOST_GNUBBY_AUTH_HANDLER_POSIX_H_ | 101 #endif // REMOTING_HOST_GNUBBY_AUTH_HANDLER_POSIX_H_ |
| OLD | NEW |