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

Unified Diff: ios/chrome/browser/ui/history/history_entry_item.h

Issue 2624963003: [ObjC ARC] Converts ios/chrome/browser/ui/history:history to ARC. (Closed)
Patch Set: Removes the rest of weak and scoped nsobjects. Created 3 years, 11 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
Index: ios/chrome/browser/ui/history/history_entry_item.h
diff --git a/ios/chrome/browser/ui/history/history_entry_item.h b/ios/chrome/browser/ui/history/history_entry_item.h
index ebbcb5ee86174ac388e7b436c64cf21f1417861f..103d0becfb9836f476e158830a97f0b0a232b928 100644
--- a/ios/chrome/browser/ui/history/history_entry_item.h
+++ b/ios/chrome/browser/ui/history/history_entry_item.h
@@ -75,13 +75,13 @@ class GURL;
@interface HistoryEntryCell : MDCCollectionViewCell
// View for displaying the favicon for the history entry.
-@property(nonatomic, retain) UIView* faviconViewContainer;
+@property(nonatomic, strong) UIView* faviconViewContainer;
// Text label for history entry title.
-@property(nonatomic, readonly, retain) UILabel* textLabel;
+@property(nonatomic, readonly, strong) UILabel* textLabel;
// Text label for history entry URL.
-@property(nonatomic, readonly, retain) UILabel* detailTextLabel;
+@property(nonatomic, readonly, strong) UILabel* detailTextLabel;
// Text label for history entry timestamp.
-@property(nonatomic, readonly, retain) UILabel* timeLabel;
+@property(nonatomic, readonly, strong) UILabel* timeLabel;
@end
« no previous file with comments | « ios/chrome/browser/ui/history/history_entry_inserter.mm ('k') | ios/chrome/browser/ui/history/history_entry_item.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698