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

Unified Diff: ios/chrome/common/physical_web/physical_web_device.h

Issue 2512613005: [ObjC ARC] Converts ios/chrome/common/physical_web:physical_web to ARC.Automatically generated AR… (Closed)
Patch Set: Created 4 years, 1 month 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 | « ios/chrome/common/physical_web/BUILD.gn ('k') | ios/chrome/common/physical_web/physical_web_device.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/common/physical_web/physical_web_device.h
diff --git a/ios/chrome/common/physical_web/physical_web_device.h b/ios/chrome/common/physical_web/physical_web_device.h
index 9bbcba852b17adb7f717c4b64e3bde06ce8442bc..14107866780abb40dcb3b8d9dafef4fcf4a4c4be 100644
--- a/ios/chrome/common/physical_web/physical_web_device.h
+++ b/ios/chrome/common/physical_web/physical_web_device.h
@@ -24,19 +24,19 @@
- (instancetype)init NS_UNAVAILABLE;
// |url| is the expanded URL.
-@property(nonatomic, readonly, retain) NSURL* url;
+@property(nonatomic, readonly, strong) NSURL* url;
// |requestUrl| is the broadcast URL.
-@property(nonatomic, readonly, retain) NSURL* requestURL;
+@property(nonatomic, readonly, strong) NSURL* requestURL;
// |icon| is the URL of the favicon.
-@property(nonatomic, readonly, retain) NSURL* icon;
+@property(nonatomic, readonly, strong) NSURL* icon;
// |title| is the title of the webpage.
-@property(nonatomic, readonly, retain) NSString* title;
+@property(nonatomic, readonly, strong) NSString* title;
// |description| is a short text description of the webpage content.
-@property(nonatomic, readonly, retain) NSString* description;
+@property(nonatomic, readonly, strong) NSString* description;
// |transmitPower| is the UriBeacon Tx Power Level.
@property(nonatomic, readonly) int transmitPower;
@@ -49,7 +49,7 @@
@property(nonatomic, readonly) double rank;
// |scanTimestamp| is the time the URL was most recently seen.
-@property(nonatomic, retain) NSDate* scanTimestamp;
+@property(nonatomic, strong) NSDate* scanTimestamp;
@end
« no previous file with comments | « ios/chrome/common/physical_web/BUILD.gn ('k') | ios/chrome/common/physical_web/physical_web_device.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698