| Index: remoting/client/ios/app/host_collection_view_cell.h
|
| diff --git a/remoting/client/ios/app/host_collection_view_cell.h b/remoting/client/ios/app/host_collection_view_cell.h
|
| index 9a18871b450a0b71696fb0ee237d421e23ffc35c..50f2da2de106331913fcdf7b6a77bd743e1ef666 100644
|
| --- a/remoting/client/ios/app/host_collection_view_cell.h
|
| +++ b/remoting/client/ios/app/host_collection_view_cell.h
|
| @@ -9,10 +9,14 @@
|
|
|
| #import "ios/third_party/material_components_ios/src/components/Collections/src/MaterialCollections.h"
|
|
|
| +@class HostInfo;
|
| +
|
| @interface HostCollectionViewCell : MDCCollectionViewCell
|
|
|
| -// Update a cell with a title and status. Typically called for cell reuse.
|
| -- (void)populateContentWithTitle:(NSString*)title status:(NSString*)status;
|
| +// Update a cell with host info. Typically called for cell reuse.
|
| +- (void)populateContentWithHostInfo:(HostInfo*)hostInfo;
|
| +
|
| +@property(readonly, nonatomic) HostInfo* hostInfo;
|
|
|
| @end
|
|
|
|
|