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

Unified Diff: ios/chrome/browser/ui/omnibox/truncating_attributed_label.h

Issue 2707963002: [ObjC ARC] Converts ios/chrome/browser/ui/omnibox:omnibox_internal to ARC. (Closed)
Patch Set: weaks Created 3 years, 10 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/omnibox/truncating_attributed_label.h
diff --git a/ios/chrome/browser/ui/omnibox/truncating_attributed_label.h b/ios/chrome/browser/ui/omnibox/truncating_attributed_label.h
index d8fec99fc89e92566ddc2211a3186414cf9b4f30..ff46313626489a85dea70ebde3a9ba0915bf6ce9 100644
--- a/ios/chrome/browser/ui/omnibox/truncating_attributed_label.h
+++ b/ios/chrome/browser/ui/omnibox/truncating_attributed_label.h
@@ -32,13 +32,13 @@ typedef enum {
@property(nonatomic, assign) NSTextAlignment textAlignment;
// For display of an attributed string.
-@property(nonatomic, retain) NSMutableAttributedString* attributedText;
+@property(nonatomic, strong) NSMutableAttributedString* attributedText;
// Set the label highlight state.
@property(nonatomic, assign) BOOL highlighted;
// Set the label highlight color.
-@property(nonatomic, retain) NSMutableAttributedString* highlightedText;
+@property(nonatomic, strong) NSMutableAttributedString* highlightedText;
@end

Powered by Google App Engine
This is Rietveld 408576698