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

Unified Diff: content/browser/storage_partition_impl_map.cc

Issue 99923002: Move temp file 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: content/browser/storage_partition_impl_map.cc
diff --git a/content/browser/storage_partition_impl_map.cc b/content/browser/storage_partition_impl_map.cc
index 90f9497223e2aea1d6e2184b2db7af5f957250d7..85934f117b322d73cbb3c4fced779790c876e46c 100644
--- a/content/browser/storage_partition_impl_map.cc
+++ b/content/browser/storage_partition_impl_map.cc
@@ -290,8 +290,8 @@ void BlockingGarbageCollect(
base::FileEnumerator enumerator(storage_root, false, kAllFileTypes);
base::FilePath trash_directory;
- if (!file_util::CreateTemporaryDirInDir(storage_root, kTrashDirname,
- &trash_directory)) {
+ if (!base::CreateTemporaryDirInDir(storage_root, kTrashDirname,
+ &trash_directory)) {
// Unable to continue without creating the trash directory so give up.
return;
}

Powered by Google App Engine
This is Rietveld 408576698