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

Unified Diff: content/common/sandbox_mac_diraccess_unittest.mm

Issue 16950028: Move file_util::Delete to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: content/common/sandbox_mac_diraccess_unittest.mm
diff --git a/content/common/sandbox_mac_diraccess_unittest.mm b/content/common/sandbox_mac_diraccess_unittest.mm
index 4884391d3c874c73fc20c44f7e54e83e02a4a628..2619ae6025e973d2017b80d3b6df0e5ce6dd5b52 100644
--- a/content/common/sandbox_mac_diraccess_unittest.mm
+++ b/content/common/sandbox_mac_diraccess_unittest.mm
@@ -135,7 +135,7 @@ class ScopedDirectoryDelete {
public:
inline void operator()(base::FilePath* x) const {
if (x) {
- file_util::Delete(*x, true);
+ base::Delete(*x, true);
}
}
};

Powered by Google App Engine
This is Rietveld 408576698