| Index: content/browser/dom_storage/dom_storage_context_impl_unittest.cc
|
| diff --git a/content/browser/dom_storage/dom_storage_context_impl_unittest.cc b/content/browser/dom_storage/dom_storage_context_impl_unittest.cc
|
| index 85b16a53b79eba665b876ea772c252b218775248..d29741f62ea42404e46fe556ccad5775427cb9b8 100644
|
| --- a/content/browser/dom_storage/dom_storage_context_impl_unittest.cc
|
| +++ b/content/browser/dom_storage/dom_storage_context_impl_unittest.cc
|
| @@ -17,8 +17,8 @@
|
| #include "content/public/browser/local_storage_usage_info.h"
|
| #include "content/public/browser/session_storage_namespace.h"
|
| #include "content/public/browser/session_storage_usage_info.h"
|
| +#include "content/public/test/mock_special_storage_policy.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| -#include "webkit/browser/quota/mock_special_storage_policy.h"
|
|
|
| using base::ASCIIToUTF16;
|
|
|
| @@ -42,7 +42,7 @@ class DOMStorageContextImplTest : public testing::Test {
|
|
|
| virtual void SetUp() {
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| - storage_policy_ = new quota::MockSpecialStoragePolicy;
|
| + storage_policy_ = new MockSpecialStoragePolicy;
|
| task_runner_ =
|
| new MockDOMStorageTaskRunner(base::MessageLoopProxy::current().get());
|
| context_ = new DOMStorageContextImpl(temp_dir_.path(),
|
| @@ -69,7 +69,7 @@ class DOMStorageContextImplTest : public testing::Test {
|
| protected:
|
| base::MessageLoop message_loop_;
|
| base::ScopedTempDir temp_dir_;
|
| - scoped_refptr<quota::MockSpecialStoragePolicy> storage_policy_;
|
| + scoped_refptr<MockSpecialStoragePolicy> storage_policy_;
|
| scoped_refptr<MockDOMStorageTaskRunner> task_runner_;
|
| scoped_refptr<DOMStorageContextImpl> context_;
|
| DISALLOW_COPY_AND_ASSIGN(DOMStorageContextImplTest);
|
|
|