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

Unified Diff: ios/web_view/internal/criwv_browser_state.mm

Issue 2692603002: Convert //ios/web_view/internal to ARC. (Closed)
Patch Set: Respond to comments. Created 3 years, 10 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/web_view/internal/criwv_browser_state.mm
diff --git a/ios/web_view/internal/criwv_browser_state.mm b/ios/web_view/internal/criwv_browser_state.mm
index 4c4f16ac6f025263d5ae787423d365dfb327ce6d..d581ab985ac4db67be84726f0ce4d77cc2d53ae7 100644
--- a/ios/web_view/internal/criwv_browser_state.mm
+++ b/ios/web_view/internal/criwv_browser_state.mm
@@ -22,6 +22,10 @@
#include "ios/web_view/internal/pref_names.h"
#include "ui/base/l10n/l10n_util_mac.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
namespace {
const char kPreferencesFilename[] = FILE_PATH_LITERAL("Preferences");
}

Powered by Google App Engine
This is Rietveld 408576698