Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: remoting/client/ios/host.mm

Issue 2802363002: Update build files and app delegate for new changes to app support files. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/ios/host.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/ios/host.mm
diff --git a/remoting/client/ios/host.mm b/remoting/client/ios/host.mm
deleted file mode 100644
index 5c3bb80c2c41a8bf6eb3ce917e0a1bd3aef6c71d..0000000000000000000000000000000000000000
--- a/remoting/client/ios/host.mm
+++ /dev/null
@@ -1,80 +0,0 @@
-// Copyright 2016 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/host.h"
-
-@implementation Host
-
-@synthesize createdTime = _createdTime;
-@synthesize hostId = _hostId;
-@synthesize hostName = _hostName;
-@synthesize hostVersion = _hostVersion;
-@synthesize jabberId = _jabberId;
-@synthesize kind = _kind;
-@synthesize publicKey = _publicKey;
-@synthesize status = _status;
-@synthesize updatedTime = _updatedTime;
-@synthesize isOnline = _isOnline;
-
-- (bool)isOnline {
- _isOnline = (self.status && [self.status isEqualToString:@"ONLINE"]);
- return _isOnline;
-}
-
-// Parse jsonData into Host list.
-+ (NSMutableArray*)parseListFromJSON:(NSMutableData*)data {
- NSError* error;
-
- NSDictionary* json = [NSJSONSerialization JSONObjectWithData:data
- options:kNilOptions
- error:&error];
-
- NSDictionary* dataDict = [json objectForKey:@"data"];
-
- NSArray* availableHosts = [dataDict objectForKey:@"items"];
-
- NSMutableArray* hostList = [[NSMutableArray alloc] init];
-
- NSUInteger idx = 0;
- NSDictionary* svr;
- NSUInteger count = [availableHosts count];
-
- while (idx < count) {
- svr = [availableHosts objectAtIndex:idx++];
- Host* host = [[Host alloc] init];
- host.createdTime = [svr objectForKey:@"createdTime"];
- host.hostId = [svr objectForKey:@"hostId"];
- host.hostName = [svr objectForKey:@"hostName"];
- host.hostVersion = [svr objectForKey:@"hostVersion"];
- host.jabberId = [svr objectForKey:@"jabberId"];
- host.kind = [svr objectForKey:@"kind"];
- host.publicKey = [svr objectForKey:@"publicKey"];
- host.status = [svr objectForKey:@"status"];
-
- NSString* ISO8601DateString = [svr objectForKey:@"updatedTime"];
- if (ISO8601DateString != nil) {
- NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init];
- [dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSz"];
- host.updatedTime = [dateFormatter dateFromString:ISO8601DateString];
- }
-
- [hostList addObject:host];
- }
-
- return hostList;
-}
-
-- (NSComparisonResult)compare:(Host*)host {
- if (self.isOnline != host.isOnline) {
- return self.isOnline ? NSOrderedAscending : NSOrderedDescending;
- } else {
- return [self.hostName localizedCaseInsensitiveCompare:host.hostName];
- }
-}
-
-@end
« no previous file with comments | « remoting/client/ios/host.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698