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

Unified Diff: ios/chrome/browser/ui/file_locations_unittest.mm

Issue 2936833002: [ObjC ARC] Converts ios/chrome/browser/ui:unit_tests to ARC. (Closed)
Patch Set: Fix bad ARC guard. Created 3 years, 6 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/ui/file_locations_unittest.mm
diff --git a/ios/chrome/browser/ui/file_locations_unittest.mm b/ios/chrome/browser/ui/file_locations_unittest.mm
index 7c0c0b25617f22df6b1aa065eaec5a196b82273b..cb315b77b049326afe54181cb562588504ec75df 100644
--- a/ios/chrome/browser/ui/file_locations_unittest.mm
+++ b/ios/chrome/browser/ui/file_locations_unittest.mm
@@ -9,6 +9,10 @@
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
extern std::string GetLocalizedFileName(const std::string& base_name,
const std::string& locale,
const std::string& ext);
« no previous file with comments | « ios/chrome/browser/ui/chrome_web_view_factory_unittest.mm ('k') | ios/chrome/browser/ui/fullscreen_controller_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698