diff options
author | dcaiafa@chromium.org <dcaiafa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-13 17:50:52 +0000 |
---|---|---|
committer | dcaiafa@chromium.org <dcaiafa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-13 17:50:52 +0000 |
commit | 55e5286f8204297aa968ef4621eeb36dec24de80 (patch) | |
tree | 24ed0bff0888adffec464c54d549fad6ec10ae21 /remoting/ios/host_cell.mm | |
parent | 74c6fd3e872933c7e9f99150438e243d77cfcfc1 (diff) | |
download | chromium_src-55e5286f8204297aa968ef4621eeb36dec24de80.zip chromium_src-55e5286f8204297aa968ef4621eeb36dec24de80.tar.gz chromium_src-55e5286f8204297aa968ef4621eeb36dec24de80.tar.bz2 |
Chromoting iOS client
This is a sub-set of:
https://codereview.chromium.org/186733007/
It doesn't include the .xcodeproj files which were causing problems with "git
cl" due to being in the root .gitignore. They won't be necessary after gyp
integration.
This is just a code drop. Nothing is being built at the moment.
NOTRY=true
TBR=sergeyu@chromium.org
BUG=331356
Review URL: https://codereview.chromium.org/278863003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/ios/host_cell.mm')
-rw-r--r-- | remoting/ios/host_cell.mm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/remoting/ios/host_cell.mm b/remoting/ios/host_cell.mm new file mode 100644 index 0000000..490a94e --- /dev/null +++ b/remoting/ios/host_cell.mm @@ -0,0 +1,20 @@ +// Copyright 2014 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/ios/host_cell.h" + +@implementation HostCell + +// Override UITableViewCell +- (id)initWithStyle:(UITableViewCellStyle)style + reuseIdentifier:(NSString*)reuseIdentifier { + self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; + return self; +} + +@end |