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

Unified Diff: ios/chrome/browser/signin/oauth2_token_service_factory.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/oauth2_token_service_factory.mm
diff --git a/ios/chrome/browser/signin/oauth2_token_service_factory.mm b/ios/chrome/browser/signin/oauth2_token_service_factory.mm
index fe5f8d6abd72bda0474ad4a216811acf435ed708..9a1e8e990b5fba3dede9f146fa1a4582b26a517e 100644
--- a/ios/chrome/browser/signin/oauth2_token_service_factory.mm
+++ b/ios/chrome/browser/signin/oauth2_token_service_factory.mm
@@ -17,6 +17,10 @@
#include "ios/chrome/browser/signin/signin_client_factory.h"
#include "ios/chrome/browser/signin/signin_error_controller_factory.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
OAuth2TokenServiceFactory::OAuth2TokenServiceFactory()
: BrowserStateKeyedServiceFactory(
"ProfileOAuth2TokenService",

Powered by Google App Engine
This is Rietveld 408576698