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

Unified Diff: chrome/renderer/printing/print_web_view_helper_browsertest.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/renderer/chrome_mock_render_thread.cc ('k') | chrome/service/cloud_print/printer_job_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/printing/print_web_view_helper_browsertest.cc
diff --git a/chrome/renderer/printing/print_web_view_helper_browsertest.cc b/chrome/renderer/printing/print_web_view_helper_browsertest.cc
index 7a3953f54b0ca093711f64d1386d9cef05acce73..4bf4dbdfa097f4a4f12652682759a30121f7225a 100644
--- a/chrome/renderer/printing/print_web_view_helper_browsertest.cc
+++ b/chrome/renderer/printing/print_web_view_helper_browsertest.cc
@@ -422,11 +422,11 @@ TEST_F(PrintWebViewHelperTest, PrintLayoutTest) {
// Save the source data and the bitmap data into temporary files to
// create base-line results.
base::FilePath source_path;
- file_util::CreateTemporaryFile(&source_path);
+ base::CreateTemporaryFile(&source_path);
chrome_render_thread_->printer()->SaveSource(0, source_path);
base::FilePath bitmap_path;
- file_util::CreateTemporaryFile(&bitmap_path);
+ base::CreateTemporaryFile(&bitmap_path);
chrome_render_thread_->printer()->SaveBitmap(0, bitmap_path);
}
}
« no previous file with comments | « chrome/renderer/chrome_mock_render_thread.cc ('k') | chrome/service/cloud_print/printer_job_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698