| Index: content/browser/in_process_webkit/indexed_db_unittest.cc
|
| diff --git a/content/browser/in_process_webkit/indexed_db_unittest.cc b/content/browser/in_process_webkit/indexed_db_unittest.cc
|
| index 08af7da56da4417bf8d419454f5e70ec78dec4da..a15c4b2ac4d35f1abcc030587f6ede38c2b8adc9 100644
|
| --- a/content/browser/in_process_webkit/indexed_db_unittest.cc
|
| +++ b/content/browser/in_process_webkit/indexed_db_unittest.cc
|
| @@ -3,7 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/file_util.h"
|
| -#include "base/scoped_temp_dir.h"
|
| +#include "base/files/scoped_temp_dir.h"
|
| #include "content/browser/browser_thread_impl.h"
|
| #include "content/browser/in_process_webkit/indexed_db_context_impl.h"
|
| #include "content/public/browser/storage_partition.h"
|
| @@ -39,7 +39,7 @@ class IndexedDBTest : public testing::Test {
|
| };
|
|
|
| TEST_F(IndexedDBTest, ClearSessionOnlyDatabases) {
|
| - ScopedTempDir temp_dir;
|
| + base::ScopedTempDir temp_dir;
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
|
|
| FilePath normal_path;
|
| @@ -83,7 +83,7 @@ TEST_F(IndexedDBTest, ClearSessionOnlyDatabases) {
|
| }
|
|
|
| TEST_F(IndexedDBTest, SetForceKeepSessionState) {
|
| - ScopedTempDir temp_dir;
|
| + base::ScopedTempDir temp_dir;
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
|
|
| FilePath normal_path;
|
| @@ -156,7 +156,7 @@ class MockWebIDBDatabase : public WebKit::WebIDBDatabase
|
|
|
|
|
| TEST_F(IndexedDBTest, ForceCloseOpenDatabasesOnDelete) {
|
| - ScopedTempDir temp_dir;
|
| + base::ScopedTempDir temp_dir;
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
|
|
| FilePath test_path;
|
|
|