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

Unified Diff: chrome/browser/page_cycler/page_cycler_unittest.cc

Issue 11359217: Move scoped_temp_dir from base to base/files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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: chrome/browser/page_cycler/page_cycler_unittest.cc
diff --git a/chrome/browser/page_cycler/page_cycler_unittest.cc b/chrome/browser/page_cycler/page_cycler_unittest.cc
index 8751407e404627ef345ffe5ebb6074f15deedbf2..52b2418d823ac8951bc488ea6d0d8d5525d1a473 100644
--- a/chrome/browser/page_cycler/page_cycler_unittest.cc
+++ b/chrome/browser/page_cycler/page_cycler_unittest.cc
@@ -198,7 +198,7 @@ TEST_F(PageCyclerTest, FailProvisionalLoads) {
const FilePath errors_expected_file =
test_data_dir().AppendASCII("errors_expected");
- ScopedTempDir temp;
+ base::ScopedTempDir temp;
ASSERT_TRUE(temp.CreateUniqueTempDir());
InitFilePaths(temp.path());
@@ -264,7 +264,7 @@ TEST_F(PageCyclerTest, FailProvisionalLoads) {
TEST_F(PageCyclerTest, StatsFile) {
const int kNumLoads = 4;
- ScopedTempDir temp;
+ base::ScopedTempDir temp;
ASSERT_TRUE(temp.CreateUniqueTempDir());
InitFilePaths(temp.path());
@@ -292,7 +292,7 @@ TEST_F(PageCyclerTest, KillBrowserAndAbort) {
const FilePath errors_expected_file =
test_data_dir().AppendASCII("abort_expected");
- ScopedTempDir temp;
+ base::ScopedTempDir temp;
ASSERT_TRUE(temp.CreateUniqueTempDir());
InitFilePaths(temp.path());
@@ -327,7 +327,7 @@ TEST_F(PageCyclerTest, KillBrowserAndAbort) {
TEST_F(PageCyclerTest, MultipleIterations) {
const int kNumLoads = 4;
- ScopedTempDir temp;
+ base::ScopedTempDir temp;
ASSERT_TRUE(temp.CreateUniqueTempDir());
InitFilePaths(temp.path());
« no previous file with comments | « chrome/browser/page_cycler/page_cycler_browsertest.cc ('k') | chrome/browser/parsers/metadata_parser_filebase_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698