| Index: content/browser/appcache/chrome_appcache_service_unittest.cc
|
| diff --git a/content/browser/appcache/chrome_appcache_service_unittest.cc b/content/browser/appcache/chrome_appcache_service_unittest.cc
|
| index 1800d0bf3281db6e82225da52ee523513562482e..98bf68aa8ec33766637ce6e561586885181dccd2 100644
|
| --- a/content/browser/appcache/chrome_appcache_service_unittest.cc
|
| +++ b/content/browser/appcache/chrome_appcache_service_unittest.cc
|
| @@ -7,6 +7,8 @@
|
| #include "base/files/scoped_temp_dir.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/message_loop/message_loop.h"
|
| +#include "content/browser/appcache/appcache_database.h"
|
| +#include "content/browser/appcache/appcache_storage_impl.h"
|
| #include "content/browser/appcache/chrome_appcache_service.h"
|
| #include "content/browser/browser_thread_impl.h"
|
| #include "content/public/browser/resource_context.h"
|
| @@ -15,8 +17,6 @@
|
| #include "content/test/appcache_test_helper.h"
|
| #include "net/url_request/url_request_context_getter.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| -#include "webkit/browser/appcache/appcache_database.h"
|
| -#include "webkit/browser/appcache/appcache_storage_impl.h"
|
|
|
| #include <set>
|
|
|
| @@ -116,8 +116,8 @@ ChromeAppCacheServiceTest::CreateAppCacheServiceImpl(
|
| // Steps needed to initialize the storage of AppCache data.
|
| message_loop_.RunUntilIdle();
|
| if (init_storage) {
|
| - appcache::AppCacheStorageImpl* storage =
|
| - static_cast<appcache::AppCacheStorageImpl*>(
|
| + AppCacheStorageImpl* storage =
|
| + static_cast<AppCacheStorageImpl*>(
|
| appcache_service->storage());
|
| storage->database_->db_connection();
|
| storage->disk_cache();
|
|
|