| Index: webkit/appcache/appcache_database_unittest.cc
|
| diff --git a/webkit/appcache/appcache_database_unittest.cc b/webkit/appcache/appcache_database_unittest.cc
|
| index 3a9a5ad11b28e9b40a83960269422720d059d409..d84d451870529467e4c614464250d18d9949c456 100644
|
| --- a/webkit/appcache/appcache_database_unittest.cc
|
| +++ b/webkit/appcache/appcache_database_unittest.cc
|
| @@ -5,7 +5,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| #include "base/file_util.h"
|
| -#include "base/scoped_temp_dir.h"
|
| +#include "base/files/scoped_temp_dir.h"
|
| #include "base/stringprintf.h"
|
| #include "sql/connection.h"
|
| #include "sql/meta_table.h"
|
| @@ -63,7 +63,7 @@ TEST(AppCacheDatabaseTest, LazyOpen) {
|
|
|
| TEST(AppCacheDatabaseTest, ReCreate) {
|
| // Real files on disk for this test.
|
| - ScopedTempDir temp_dir;
|
| + base::ScopedTempDir temp_dir;
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
| const FilePath kDbFile = temp_dir.path().AppendASCII("appcache.db");
|
| const FilePath kNestedDir = temp_dir.path().AppendASCII("nested");
|
| @@ -619,7 +619,7 @@ TEST(AppCacheDatabaseTest, OriginUsage) {
|
|
|
| TEST(AppCacheDatabaseTest, UpgradeSchema3to4) {
|
| // Real file on disk for this test.
|
| - ScopedTempDir temp_dir;
|
| + base::ScopedTempDir temp_dir;
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
| const FilePath kDbFile = temp_dir.path().AppendASCII("upgrade.db");
|
|
|
|
|