| 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_HOST_STATUS_OBSERVER_H_ | 5 #ifndef REMOTING_HOST_HOST_STATUS_OBSERVER_H_ |
| 6 #define REMOTING_HOST_HOST_STATUS_OBSERVER_H_ | 6 #define REMOTING_HOST_HOST_STATUS_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "third_party/skia/include/core/SkRect.h" | |
| 11 | |
| 12 namespace net { | 10 namespace net { |
| 13 class IPEndPoint; | 11 class IPEndPoint; |
| 14 } // namespace net | 12 } // namespace net |
| 15 | 13 |
| 16 namespace remoting { | 14 namespace remoting { |
| 17 class SignalStrategy; | 15 class SignalStrategy; |
| 18 | 16 |
| 19 namespace protocol { | 17 namespace protocol { |
| 20 struct TransportRoute; | 18 struct TransportRoute; |
| 21 }; | 19 }; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 49 // Called when hosting is started for an account. | 47 // Called when hosting is started for an account. |
| 50 virtual void OnStart(const std::string& xmpp_login) {} | 48 virtual void OnStart(const std::string& xmpp_login) {} |
| 51 | 49 |
| 52 // Called when the host shuts down. | 50 // Called when the host shuts down. |
| 53 virtual void OnShutdown() {} | 51 virtual void OnShutdown() {} |
| 54 }; | 52 }; |
| 55 | 53 |
| 56 } // namespace remoting | 54 } // namespace remoting |
| 57 | 55 |
| 58 #endif // REMOTING_HOST_HOST_STATUS_OBSERVER_H_ | 56 #endif // REMOTING_HOST_HOST_STATUS_OBSERVER_H_ |
| OLD | NEW |