| Index: content/browser/indexed_db/indexed_db_quota_client_unittest.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_quota_client_unittest.cc b/content/browser/indexed_db/indexed_db_quota_client_unittest.cc
|
| index 2ca6cb9d403203a00842d8ec6da1988b8a84b0e7..274d864772f69627a6e9187c3606fa93ae79f5f8 100644
|
| --- a/content/browser/indexed_db/indexed_db_quota_client_unittest.cc
|
| +++ b/content/browser/indexed_db/indexed_db_quota_client_unittest.cc
|
| @@ -54,7 +54,7 @@ class IndexedDBQuotaClientTest : public testing::Test {
|
| new IndexedDBContextImpl(browser_context_->GetPath(),
|
| browser_context_->GetSpecialStoragePolicy(),
|
| quota_manager->proxy(),
|
| - task_runner_);
|
| + task_runner_.get());
|
| base::MessageLoop::current()->RunUntilIdle();
|
| setup_temp_dir();
|
| }
|
| @@ -130,7 +130,7 @@ class IndexedDBQuotaClientTest : public testing::Test {
|
| return delete_status_;
|
| }
|
|
|
| - IndexedDBContextImpl* idb_context() { return idb_context_; }
|
| + IndexedDBContextImpl* idb_context() { return idb_context_.get(); }
|
|
|
| void SetFileSizeTo(const base::FilePath& path, int size) {
|
| std::string junk(size, 'a');
|
|
|