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: chrome/browser/net/net_log_temp_file_unittest.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 | « chrome/browser/nacl_host/test/nacl_gdb_browsertest.cc ('k') | chrome/browser/printing/print_dialog_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/net_log_temp_file_unittest.cc
diff --git a/chrome/browser/net/net_log_temp_file_unittest.cc b/chrome/browser/net/net_log_temp_file_unittest.cc
index f30254f02afad7e792e85d939f57083bc0218965..6c414e8283c33ee5363d80682311b09cc1c7a67d 100644
--- a/chrome/browser/net/net_log_temp_file_unittest.cc
+++ b/chrome/browser/net/net_log_temp_file_unittest.cc
@@ -65,8 +65,7 @@ class NetLogTempFileTest : public ::testing::Test {
// Get a temporary file name for unit tests.
base::FilePath net_log_dir;
ASSERT_TRUE(net_log_temp_file_->GetNetExportLogDirectory(&net_log_dir));
- ASSERT_TRUE(file_util::CreateTemporaryFileInDir(net_log_dir,
- &net_export_log_));
+ ASSERT_TRUE(base::CreateTemporaryFileInDir(net_log_dir, &net_export_log_));
net_log_temp_file_->log_filename_ = net_export_log_.BaseName().value();
« no previous file with comments | « chrome/browser/nacl_host/test/nacl_gdb_browsertest.cc ('k') | chrome/browser/printing/print_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698