Chromium Code Reviews| Index: ios/public/provider/chrome/browser/signin/chrome_identity.h |
| diff --git a/ios/public/provider/chrome/browser/signin/chrome_identity.h b/ios/public/provider/chrome/browser/signin/chrome_identity.h |
| index d427bd4d0c34e3923c956c0ca09efd270df9bf5c..aae896efe5049ae6d9a37240f5a087f191b7b13e 100644 |
| --- a/ios/public/provider/chrome/browser/signin/chrome_identity.h |
| +++ b/ios/public/provider/chrome/browser/signin/chrome_identity.h |
| @@ -14,19 +14,19 @@ |
| // Identity/account email address. This can be shown to the user, but is not a |
| // unique identifier (@see gaiaID). |
| -@property(nonatomic, readonly) NSString* userEmail; |
| +@property(strong, nonatomic, readonly) NSString* userEmail; |
| // The unique GAIA user identifier for this identity/account. |
| // You may use this as a unique identifier to remember a particular identity. |
| -@property(nonatomic, readonly) NSString* gaiaID; |
| +@property(weak, nonatomic, readonly) NSString* gaiaID; |
|
msarda
2017/07/11 13:54:41
Same comment as for userEmail. Let's make them all
stkhapugin
2017/07/12 14:54:05
Done.
|
| // Returns the full name of the identity. |
| // Could be nil if no full name has been fetched for this account yet. |
| -@property(nonatomic, readonly) NSString* userFullName; |
| +@property(weak, nonatomic, readonly) NSString* userFullName; |
| // Cached Hashed Gaia ID. This is used to pass the currently signed in account |
| // between apps. |
| -@property(nonatomic, readonly) NSString* hashedGaiaID; |
| +@property(weak, nonatomic, readonly) NSString* hashedGaiaID; |
| @end |