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

Unified Diff: content/browser/storage_partition_impl.cc

Issue 504273002: Remove implicit conversions from scoped_refptr to T* in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « content/browser/startup_task_runner.cc ('k') | content/browser/storage_partition_impl_map.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/storage_partition_impl.cc
diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc
index 36af20223f30f2fcc7ad58663541c231fd30c0c8..d078a745101d079bd1056e1fba4755110deadd67 100644
--- a/content/browser/storage_partition_impl.cc
+++ b/content/browser/storage_partition_impl.cc
@@ -531,10 +531,16 @@ void StoragePartitionImpl::ClearDataImpl(
callback);
// |helper| deletes itself when done in
// DataDeletionHelper::DecrementTaskCountOnUI().
- helper->ClearDataOnUIThread(storage_origin, origin_matcher, GetPath(),
- rq_context, dom_storage_context_, quota_manager_,
+ helper->ClearDataOnUIThread(storage_origin,
+ origin_matcher,
+ GetPath(),
+ rq_context,
+ dom_storage_context_.get(),
+ quota_manager_.get(),
special_storage_policy_.get(),
- webrtc_identity_store_, begin, end);
+ webrtc_identity_store_.get(),
+ begin,
+ end);
}
void StoragePartitionImpl::
« no previous file with comments | « content/browser/startup_task_runner.cc ('k') | content/browser/storage_partition_impl_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698