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

Unified Diff: chrome/browser/sync/test/integration/sync_extension_helper.cc

Issue 100573002: Move directory creation functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: chrome/browser/sync/test/integration/sync_extension_helper.cc
diff --git a/chrome/browser/sync/test/integration/sync_extension_helper.cc b/chrome/browser/sync/test/integration/sync_extension_helper.cc
index 0979ef44b7c1821f270372302f48bbb4fc0b230d..2a4196c5687e88bd5a0158493875794e1ad7ff29 100644
--- a/chrome/browser/sync/test/integration/sync_extension_helper.cc
+++ b/chrome/browser/sync/test/integration/sync_extension_helper.cc
@@ -308,7 +308,7 @@ scoped_refptr<Extension> CreateExtension(const base::FilePath& base_dir,
const base::FilePath sub_dir = base::FilePath().AppendASCII(name);
base::FilePath extension_dir;
if (!base::PathExists(base_dir) &&
- !file_util::CreateDirectory(base_dir)) {
+ !base::CreateDirectory(base_dir)) {
ADD_FAILURE();
return NULL;
}
« no previous file with comments | « chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc ('k') | chrome/browser/sync/test/integration/sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698