| 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());
|
|
|
|
|