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

Unified Diff: trunk/src/chrome/browser/net/net_log_temp_file.cc

Issue 105823009: Revert 239280 "Move more file_util functions to base namespace." (Closed) Base URL: svn://svn.chromium.org/chrome/
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: trunk/src/chrome/browser/net/net_log_temp_file.cc
===================================================================
--- trunk/src/chrome/browser/net/net_log_temp_file.cc (revision 239399)
+++ trunk/src/chrome/browser/net/net_log_temp_file.cc (working copy)
@@ -96,7 +96,7 @@
// Try to make sure we can create the file.
// TODO(rtenneti): Find a better for doing the following. Surface some error
// to the user if we couldn't create the file.
- FILE* file = base::OpenFile(log_path_, "w");
+ FILE* file = file_util::OpenFile(log_path_, "w");
if (file == NULL)
return;

Powered by Google App Engine
This is Rietveld 408576698