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

Unified Diff: ios/chrome/browser/ui/autofill/autofill_client_ios.mm

Issue 2569713003: [ObjC ARC] Converts ios/chrome/browser/ui/autofill:autofill to ARC. (Closed)
Patch Set: comment_removed Created 4 years 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/ui/autofill/autofill_client_ios.mm
diff --git a/ios/chrome/browser/ui/autofill/autofill_client_ios.mm b/ios/chrome/browser/ui/autofill/autofill_client_ios.mm
index 9447a8fdcf0637a7195080741ce62b7dee0b8f26..7cb15de07b786574cb06a518962af46677e159bd 100644
--- a/ios/chrome/browser/ui/autofill/autofill_client_ios.mm
+++ b/ios/chrome/browser/ui/autofill/autofill_client_ios.mm
@@ -6,7 +6,6 @@
#include <utility>
-#include "base/bind.h"
#include "base/memory/ptr_util.h"
#include "components/autofill/core/browser/autofill_credit_card_filling_infobar_delegate_mobile.h"
#include "components/autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h"
@@ -27,6 +26,10 @@
#include "ios/chrome/browser/web_data_service_factory.h"
#include "ios/public/provider/chrome/browser/chrome_browser_provider.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
namespace autofill {
AutofillClientIOS::AutofillClientIOS(
« no previous file with comments | « ios/chrome/browser/ui/autofill/autofill_client_ios.h ('k') | ios/chrome/browser/ui/autofill/autofill_save_card_infobar.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698