| Index: chrome/browser/net/quota_policy_channel_id_store.cc
 | 
| diff --git a/chrome/browser/net/quota_policy_channel_id_store.cc b/chrome/browser/net/quota_policy_channel_id_store.cc
 | 
| index c88d979505911a387138e0962f9938d7fd5e9de6..cd69e97295f3badc9d346423a36fba94ed44dff3 100644
 | 
| --- a/chrome/browser/net/quota_policy_channel_id_store.cc
 | 
| +++ b/chrome/browser/net/quota_policy_channel_id_store.cc
 | 
| @@ -23,11 +23,11 @@
 | 
|  QuotaPolicyChannelIDStore::QuotaPolicyChannelIDStore(
 | 
|      const base::FilePath& path,
 | 
|      const scoped_refptr<base::SequencedTaskRunner>& background_task_runner,
 | 
| -    storage::SpecialStoragePolicy* special_storage_policy)
 | 
| +    const scoped_refptr<storage::SpecialStoragePolicy>& special_storage_policy)
 | 
|      : special_storage_policy_(special_storage_policy),
 | 
|        persistent_store_(
 | 
|            new net::SQLiteChannelIDStore(path, background_task_runner)) {
 | 
| -  DCHECK(background_task_runner);
 | 
| +  DCHECK(background_task_runner.get());
 | 
|  }
 | 
|  
 | 
|  QuotaPolicyChannelIDStore::~QuotaPolicyChannelIDStore() {
 | 
| 
 |