| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_IOS_FACADE_REMOTING_SERVICE_H_ | 5 #ifndef REMOTING_IOS_FACADE_REMOTING_SERVICE_H_ |
| 6 #define REMOTING_CLIENT_IOS_FACADE_REMOTING_SERVICE_H_ | 6 #define REMOTING_IOS_FACADE_REMOTING_SERVICE_H_ |
| 7 | 7 |
| 8 #import "remoting/client/chromoting_client_runtime.h" | 8 #import "remoting/client/chromoting_client_runtime.h" |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "remoting/base/oauth_token_getter.h" | 11 #include "remoting/base/oauth_token_getter.h" |
| 12 | 12 |
| 13 @class HostInfo; | 13 @class HostInfo; |
| 14 @class UserInfo; | 14 @class UserInfo; |
| 15 @class RemotingAuthentication; | 15 @class RemotingAuthentication; |
| 16 | 16 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 // Returns the current host list. | 41 // Returns the current host list. |
| 42 @property(nonatomic, readonly) NSArray<HostInfo*>* hosts; | 42 @property(nonatomic, readonly) NSArray<HostInfo*>* hosts; |
| 43 | 43 |
| 44 // The Chromoting Client Runtime, this holds the threads and other shared | 44 // The Chromoting Client Runtime, this holds the threads and other shared |
| 45 // resources used by the Chromoting clients | 45 // resources used by the Chromoting clients |
| 46 @property(nonatomic, readonly) remoting::ChromotingClientRuntime* runtime; | 46 @property(nonatomic, readonly) remoting::ChromotingClientRuntime* runtime; |
| 47 | 47 |
| 48 @end | 48 @end |
| 49 | 49 |
| 50 #endif // REMOTING_CLIENT_IOS_FACADE_REMOTING_SERVICE_H_ | 50 #endif // REMOTING_IOS_FACADE_REMOTING_SERVICE_H_ |
| OLD | NEW |