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

Unified Diff: ios/chrome/browser/signin/authentication_service.mm

Issue 2848673003: [ObjC ARC] Converts ios/chrome/browser/signin:signin to ARC. (Closed)
Patch Set: Created 3 years, 8 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/signin/authentication_service.mm
diff --git a/ios/chrome/browser/signin/authentication_service.mm b/ios/chrome/browser/signin/authentication_service.mm
index 37501c36b160115487c73b93e14ae473cf212f2d..109946aa5618f759f4c89229dcead11a826bea93 100644
--- a/ios/chrome/browser/signin/authentication_service.mm
+++ b/ios/chrome/browser/signin/authentication_service.mm
@@ -37,6 +37,10 @@
#import "ios/public/provider/chrome/browser/signin/chrome_identity.h"
#include "ios/public/provider/chrome/browser/signin/chrome_identity_service.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
namespace {
// Enum describing the different sync states per login methods.
@@ -119,20 +123,20 @@ void AuthenticationService::Initialize() {
OnApplicationEnterForeground();
NSNotificationCenter* center = [NSNotificationCenter defaultCenter];
- foreground_observer_.reset(
- [[center addObserverForName:UIApplicationWillEnterForegroundNotification
- object:nil
- queue:nil
- usingBlock:^(NSNotification* notification) {
- OnApplicationEnterForeground();
- }] retain]);
- background_observer_.reset(
- [[center addObserverForName:UIApplicationDidEnterBackgroundNotification
- object:nil
- queue:nil
- usingBlock:^(NSNotification* notification) {
- OnApplicationEnterBackground();
- }] retain]);
+ foreground_observer_.reset([center
+ addObserverForName:UIApplicationWillEnterForegroundNotification
+ object:nil
+ queue:nil
+ usingBlock:^(NSNotification* notification) {
+ OnApplicationEnterForeground();
+ }]);
+ background_observer_.reset([center
+ addObserverForName:UIApplicationDidEnterBackgroundNotification
+ object:nil
+ queue:nil
+ usingBlock:^(NSNotification* notification) {
+ OnApplicationEnterBackground();
+ }]);
identity_service_observer_.Add(
ios::GetChromeBrowserProvider()->GetChromeIdentityService());
@@ -490,7 +494,7 @@ bool AuthenticationService::HandleMDMNotification(ChromeIdentity* identity,
};
if (identity_service->HandleMDMNotification(identity, user_info, callback)) {
cached_mdm_infos_[ChromeIdentityToAccountID(browser_state_, identity)]
- .reset([user_info retain]);
+ .reset(user_info);
msarda 2017/06/26 11:44:47 It is not clear to me if we need to retain here -
stkhapugin 2017/06/26 13:06:41 Yes, scoped_nsobject increase the retain count. If
return true;
}
return false;

Powered by Google App Engine
This is Rietveld 408576698