Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2376)

Unified Diff: chrome/browser/net/quota_policy_channel_id_store.cc

Issue 543893002: Random fixes through Chrome for scoped_reftpr T* removal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {
« no previous file with comments | « chrome/browser/net/quota_policy_channel_id_store.h ('k') | chrome/browser/ui/app_list/search/history_data_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698