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

Unified Diff: content/browser/renderer_host/pepper/quota_file_io_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
Index: content/browser/renderer_host/pepper/quota_file_io_unittest.cc
diff --git a/content/browser/renderer_host/pepper/quota_file_io_unittest.cc b/content/browser/renderer_host/pepper/quota_file_io_unittest.cc
index bcc08d3434876c2cd32162a9b11f3781bdddc30b..bac9f12ac0bf347f1ae2194286461fa29db11635 100644
--- a/content/browser/renderer_host/pepper/quota_file_io_unittest.cc
+++ b/content/browser/renderer_host/pepper/quota_file_io_unittest.cc
@@ -89,7 +89,7 @@ class QuotaFileIOTest : public PpapiUnittest {
PpapiUnittest::SetUp();
ASSERT_TRUE(dir_.CreateUniqueTempDir());
base::FilePath path;
- ASSERT_TRUE(file_util::CreateTemporaryFileInDir(dir_.path(), &path));
+ ASSERT_TRUE(base::CreateTemporaryFileInDir(dir_.path(), &path));
int file_flags = base::PLATFORM_FILE_OPEN |
base::PLATFORM_FILE_READ |
base::PLATFORM_FILE_WRITE |

Powered by Google App Engine
This is Rietveld 408576698