| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_LOG_TO_SERVER_H_ | 5 #ifndef REMOTING_HOST_LOG_TO_SERVER_H_ |
| 6 #define REMOTING_HOST_LOG_TO_SERVER_H_ | 6 #define REMOTING_HOST_LOG_TO_SERVER_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
| 15 #include "remoting/host/host_status_observer.h" | 15 #include "remoting/host/host_status_observer.h" |
| 16 #include "remoting/host/server_log_entry.h" | 16 #include "remoting/jingle_glue/server_log_entry.h" |
| 17 #include "remoting/jingle_glue/signal_strategy.h" | 17 #include "remoting/jingle_glue/signal_strategy.h" |
| 18 #include "remoting/protocol/transport.h" | 18 #include "remoting/protocol/transport.h" |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class MessageLoopProxy; | 21 class MessageLoopProxy; |
| 22 } // namespace base | 22 } // namespace base |
| 23 | 23 |
| 24 namespace buzz { | 24 namespace buzz { |
| 25 class XmlElement; | 25 class XmlElement; |
| 26 } // namespace buzz | 26 } // namespace buzz |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 std::map<std::string, protocol::TransportRoute::RouteType> | 76 std::map<std::string, protocol::TransportRoute::RouteType> |
| 77 connection_route_type_; | 77 connection_route_type_; |
| 78 std::deque<ServerLogEntry> pending_entries_; | 78 std::deque<ServerLogEntry> pending_entries_; |
| 79 | 79 |
| 80 DISALLOW_COPY_AND_ASSIGN(LogToServer); | 80 DISALLOW_COPY_AND_ASSIGN(LogToServer); |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 } // namespace remoting | 83 } // namespace remoting |
| 84 | 84 |
| 85 #endif // REMOTING_HOST_LOG_TO_SERVER_H_ | 85 #endif // REMOTING_HOST_LOG_TO_SERVER_H_ |
| OLD | NEW |