| Index: remoting/client/ios/domain/client_session_details.mm
|
| diff --git a/remoting/client/ios/domain/client_session_details.mm b/remoting/client/ios/domain/client_session_details.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..71a393557ec537e43c6271fa3b382d4fb213b596
|
| --- /dev/null
|
| +++ b/remoting/client/ios/domain/client_session_details.mm
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#if !defined(__has_feature) || !__has_feature(objc_arc)
|
| +#error "This file requires ARC support."
|
| +#endif
|
| +
|
| +#import "remoting/client/ios/domain/client_session_details.h"
|
| +
|
| +#import "remoting/client/ios/domain/host_info.h"
|
| +
|
| +@implementation ClientSessionDetails
|
| +
|
| +@synthesize hostInfo = _hostInfo;
|
| +@synthesize state = _state;
|
| +
|
| +- (NSString*)description {
|
| + return
|
| + [NSString stringWithFormat:@"ClientSessionDetails: state=%d hostInfo=%@",
|
| + (int)_state, _hostInfo];
|
| +}
|
| +
|
| +@end
|
|
|