| 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..c755a072279c0273956cabac5349c3fbd1f57b5a 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(strong, nonatomic, readonly) NSString* gaiaID;
|
|
|
| // 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(strong, 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(strong, nonatomic, readonly) NSString* hashedGaiaID;
|
|
|
| @end
|
|
|
|
|