| 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 0298513929900eb84174da0a7c9c989ceb7ddec9..36af6387a6645bf71723273449d609254008d711 100644
 | 
| --- a/content/browser/storage_partition_impl_unittest.cc
 | 
| +++ b/content/browser/storage_partition_impl_unittest.cc
 | 
| @@ -107,10 +107,16 @@ 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<WebRTCIdentityStore>());
 | 
|    base::MessageLoop::current()->PostTask(
 | 
| -      FROM_HERE,
 | 
| -      base::Bind(&ClearData, &sp, clear_cb.callback()));
 | 
| +      FROM_HERE, base::Bind(&ClearData, &sp, clear_cb.callback()));
 | 
|    clear_cb.WaitForResult();
 | 
|    EXPECT_EQ(0u, Size());
 | 
|  }
 | 
| 
 |