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

Unified Diff: chrome/browser/sync_file_system/local/local_file_sync_context.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_file_system/local/local_file_sync_context.cc
diff --git a/chrome/browser/sync_file_system/local/local_file_sync_context.cc b/chrome/browser/sync_file_system/local/local_file_sync_context.cc
index 840f59ceff59b0a8054e25877894a1a0f31df387..ede4bc4075e7e7531467787126b5e67905edb2bc 100644
--- a/chrome/browser/sync_file_system/local/local_file_sync_context.cc
+++ b/chrome/browser/sync_file_system/local/local_file_sync_context.cc
@@ -622,7 +622,7 @@ SyncStatusCode LocalFileSyncContext::InitializeChangeTrackerOnFileThread(
}
// Creates snapshot directory.
- file_util::CreateDirectory(local_base_path_.Append(kSnapshotDir));
+ base::CreateDirectory(local_base_path_.Append(kSnapshotDir));
return status;
}

Powered by Google App Engine
This is Rietveld 408576698