| Index: content/browser/storage_partition_impl_unittest.cc
|
| diff --git a/content/browser/storage_partition_impl_unittest.cc b/content/browser/storage_partition_impl_unittest.cc
|
| index 36af6387a6645bf71723273449d609254008d711..9bfd337dc7af8fd9d2418f895363d45c5b286361 100644
|
| --- a/content/browser/storage_partition_impl_unittest.cc
|
| +++ b/content/browser/storage_partition_impl_unittest.cc
|
| @@ -9,6 +9,7 @@
|
| #include "content/browser/browser_thread_impl.h"
|
| #include "content/browser/gpu/shader_disk_cache.h"
|
| #include "content/browser/storage_partition_impl.h"
|
| +#include "content/public/browser/cookie_store_map.h"
|
| #include "content/public/browser/storage_partition.h"
|
| #include "content/public/test/test_browser_thread_bundle.h"
|
| #include "net/base/test_completion_callback.h"
|
| @@ -107,13 +108,8 @@ TEST_F(StoragePartitionShaderClearTest, ClearShaderCache) {
|
| EXPECT_EQ(1u, Size());
|
|
|
| TestClosureCallback clear_cb;
|
| - StoragePartitionImpl sp(cache_path(),
|
| - NULL,
|
| - NULL,
|
| - NULL,
|
| - NULL,
|
| - NULL,
|
| - NULL,
|
| + StoragePartitionImpl sp(cache_path(), NULL, NULL, NULL, NULL, NULL, NULL,
|
| + scoped_ptr<CookieStoreMap>(),
|
| scoped_ptr<WebRTCIdentityStore>());
|
| base::MessageLoop::current()->PostTask(
|
| FROM_HERE, base::Bind(&ClearData, &sp, clear_cb.callback()));
|
|
|