| 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_JINGLE_GLUE_LOG_TO_SERVER_H_ | 5 #ifndef REMOTING_SIGNALING_LOG_TO_SERVER_H_ |
| 6 #define REMOTING_JINGLE_GLUE_LOG_TO_SERVER_H_ | 6 #define REMOTING_SIGNALING_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 "remoting/jingle_glue/server_log_entry.h" | 13 #include "remoting/signaling/server_log_entry.h" |
| 14 #include "remoting/jingle_glue/signal_strategy.h" | 14 #include "remoting/signaling/signal_strategy.h" |
| 15 | 15 |
| 16 namespace buzz { | 16 namespace buzz { |
| 17 class XmlElement; | 17 class XmlElement; |
| 18 } // namespace buzz | 18 } // namespace buzz |
| 19 | 19 |
| 20 namespace remoting { | 20 namespace remoting { |
| 21 | 21 |
| 22 class IqSender; | 22 class IqSender; |
| 23 | 23 |
| 24 // LogToServer sends log entries to a server. | 24 // LogToServer sends log entries to a server. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 50 scoped_ptr<IqSender> iq_sender_; | 50 scoped_ptr<IqSender> iq_sender_; |
| 51 std::string directory_bot_jid_; | 51 std::string directory_bot_jid_; |
| 52 | 52 |
| 53 std::deque<ServerLogEntry> pending_entries_; | 53 std::deque<ServerLogEntry> pending_entries_; |
| 54 | 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(LogToServer); | 55 DISALLOW_COPY_AND_ASSIGN(LogToServer); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace remoting | 58 } // namespace remoting |
| 59 | 59 |
| 60 #endif // REMOTING_JINGLE_GLUE_LOG_TO_SERVER_H_ | 60 #endif // REMOTING_SIGNALING_LOG_TO_SERVER_H_ |
| OLD | NEW |