| OLD | NEW | 
|    1 // Copyright 2013 The Chromium Authors. All rights reserved. |    1 // Copyright 2013 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_STATUS_SENDER_H_ |    5 #ifndef REMOTING_HOST_STATUS_SENDER_H_ | 
|    6 #define REMOTING_HOST_STATUS_SENDER_H_ |    6 #define REMOTING_HOST_STATUS_SENDER_H_ | 
|    7  |    7  | 
|    8 #include <string> |    8 #include <string> | 
|    9  |    9  | 
|   10 #include "base/compiler_specific.h" |   10 #include "base/compiler_specific.h" | 
|   11 #include "base/memory/ref_counted.h" |   11 #include "base/memory/ref_counted.h" | 
|   12 #include "base/memory/scoped_ptr.h" |   12 #include "base/memory/scoped_ptr.h" | 
|   13 #include "remoting/base/rsa_key_pair.h" |   13 #include "remoting/base/rsa_key_pair.h" | 
|   14 #include "remoting/host/host_exit_codes.h" |   14 #include "remoting/host/host_exit_codes.h" | 
|   15 #include "remoting/jingle_glue/signal_strategy.h" |   15 #include "remoting/signaling/signal_strategy.h" | 
|   16  |   16  | 
|   17 namespace base { |   17 namespace base { | 
|   18 class MessageLoopProxy; |   18 class MessageLoopProxy; | 
|   19 }  // namespace base |   19 }  // namespace base | 
|   20  |   20  | 
|   21 namespace buzz { |   21 namespace buzz { | 
|   22 class XmlElement; |   22 class XmlElement; | 
|   23 }  // namespace buzz |   23 }  // namespace buzz | 
|   24  |   24  | 
|   25 namespace remoting { |   25 namespace remoting { | 
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   96  |   96  | 
|   97   // The string representation of the HostStatus values. |   97   // The string representation of the HostStatus values. | 
|   98   static const char* const host_status_strings_[2]; |   98   static const char* const host_status_strings_[2]; | 
|   99  |   99  | 
|  100   DISALLOW_COPY_AND_ASSIGN(HostStatusSender); |  100   DISALLOW_COPY_AND_ASSIGN(HostStatusSender); | 
|  101 }; |  101 }; | 
|  102  |  102  | 
|  103 }  // namespace remoting |  103 }  // namespace remoting | 
|  104  |  104  | 
|  105 #endif  // REMOTING_HOST_STATUS_SENDER_H_ |  105 #endif  // REMOTING_HOST_STATUS_SENDER_H_ | 
| OLD | NEW |