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

Unified Diff: content/browser/web_contents/web_contents_drag_win.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
« no previous file with comments | « content/browser/tracing/tracing_controller_impl.cc ('k') | content/child/npapi/plugin_stream_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/web_contents/web_contents_drag_win.cc
diff --git a/content/browser/web_contents/web_contents_drag_win.cc b/content/browser/web_contents/web_contents_drag_win.cc
index 72c17583ed696c9050f124dc463836bc7d59de82..3a590579f239bdb7296593c9dbf631614ad315c6 100644
--- a/content/browser/web_contents/web_contents_drag_win.cc
+++ b/content/browser/web_contents/web_contents_drag_win.cc
@@ -247,8 +247,8 @@ void WebContentsDragWin::PrepareDragForDownload(
UTF16ToUTF8(mime_type),
default_name);
base::FilePath temp_dir_path;
- if (!file_util::CreateNewTempDirectory(
- FILE_PATH_LITERAL("chrome_drag"), &temp_dir_path))
+ if (!base::CreateNewTempDirectory(FILE_PATH_LITERAL("chrome_drag"),
+ &temp_dir_path))
return;
base::FilePath download_path =
temp_dir_path.Append(generated_download_file_name);
« no previous file with comments | « content/browser/tracing/tracing_controller_impl.cc ('k') | content/child/npapi/plugin_stream_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698