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

Unified Diff: ios/chrome/browser/file_metadata_util.mm

Issue 2566993002: [ObjC ARC] Converts ios/chrome/browser:browser to ARC. (Closed)
Patch Set: comments 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
« no previous file with comments | « ios/chrome/browser/experimental_flags.mm ('k') | ios/chrome/browser/install_time_util.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/file_metadata_util.mm
diff --git a/ios/chrome/browser/file_metadata_util.mm b/ios/chrome/browser/file_metadata_util.mm
index cad6d449ccef8dd94399ab68fb0726686e2fe3f9..dbbb174af8ac821a95391720f7f4caf623878452 100644
--- a/ios/chrome/browser/file_metadata_util.mm
+++ b/ios/chrome/browser/file_metadata_util.mm
@@ -10,6 +10,10 @@
#include "base/strings/sys_string_conversions.h"
#include "base/threading/thread_restrictions.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
void SetSkipSystemBackupAttributeToItem(const base::FilePath& path,
bool skip_system_backup) {
base::ThreadRestrictions::AssertIOAllowed();
« no previous file with comments | « ios/chrome/browser/experimental_flags.mm ('k') | ios/chrome/browser/install_time_util.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698