| 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_CLIENT_LOG_TO_SERVER_H_ | 5 #ifndef REMOTING_CLIENT_LOG_TO_SERVER_H_ |
| 6 #define REMOTING_CLIENT_LOG_TO_SERVER_H_ | 6 #define REMOTING_CLIENT_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/threading/non_thread_safe.h" | 12 #include "base/threading/non_thread_safe.h" |
| 13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 14 #include "remoting/client/server_log_entry.h" | 14 #include "remoting/jingle_glue/server_log_entry.h" |
| 15 #include "remoting/jingle_glue/signal_strategy.h" | 15 #include "remoting/jingle_glue/signal_strategy.h" |
| 16 #include "remoting/protocol/connection_to_host.h" | 16 #include "remoting/protocol/connection_to_host.h" |
| 17 #include "remoting/protocol/errors.h" | 17 #include "remoting/protocol/errors.h" |
| 18 | 18 |
| 19 namespace buzz { | 19 namespace buzz { |
| 20 class XmlElement; | 20 class XmlElement; |
| 21 } // namespace buzz | 21 } // namespace buzz |
| 22 | 22 |
| 23 namespace remoting { | 23 namespace remoting { |
| 24 | 24 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 base::TimeTicks session_id_generation_time_; | 81 base::TimeTicks session_id_generation_time_; |
| 82 | 82 |
| 83 DISALLOW_COPY_AND_ASSIGN(LogToServer); | 83 DISALLOW_COPY_AND_ASSIGN(LogToServer); |
| 84 }; | 84 }; |
| 85 | 85 |
| 86 } // namespace client | 86 } // namespace client |
| 87 | 87 |
| 88 } // namespace remoting | 88 } // namespace remoting |
| 89 | 89 |
| 90 #endif // REMOTING_CLIENT_LOG_TO_SERVER_H_ | 90 #endif // REMOTING_CLIENT_LOG_TO_SERVER_H_ |
| OLD | NEW |