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

Unified Diff: utils/cross/temporary_file_test.cc

Issue 203077: This updated the GYP deps file to the last known good revision of Chrome,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 months 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 | « utils/cross/temporary_file.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/cross/temporary_file_test.cc
===================================================================
--- utils/cross/temporary_file_test.cc (revision 26272)
+++ utils/cross/temporary_file_test.cc (working copy)
@@ -50,7 +50,7 @@
TEST_F(TemporaryFileTest, BasicFunction) {
FilePath path;
- file_util::CreateTemporaryFileName(&path);
+ file_util::CreateTemporaryFile(&path);
EXPECT_TRUE(file_util::PathExists(path));
{
TemporaryFile temporary_file(path);
@@ -64,8 +64,8 @@
TEST_F(TemporaryFileTest, Reset) {
FilePath path;
FilePath path1;
- file_util::CreateTemporaryFileName(&path);
- file_util::CreateTemporaryFileName(&path1);
+ file_util::CreateTemporaryFile(&path);
+ file_util::CreateTemporaryFile(&path1);
EXPECT_TRUE(file_util::PathExists(path));
EXPECT_TRUE(file_util::PathExists(path1));
{
@@ -86,7 +86,7 @@
TEST_F(TemporaryFileTest, Release) {
FilePath path;
- file_util::CreateTemporaryFileName(&path);
+ file_util::CreateTemporaryFile(&path);
EXPECT_TRUE(file_util::PathExists(path));
{
TemporaryFile temporary_file(path);
« no previous file with comments | « utils/cross/temporary_file.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698