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

Unified Diff: content/browser/storage_partition_impl_map.h

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/ssl/ssl_manager.h ('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_map.h
diff --git a/content/browser/storage_partition_impl_map.h b/content/browser/storage_partition_impl_map.h
index 92427f87c41fc1f472bc894fe4475a3fb373ea8f..00b01f1ec1ffba8dfabb148e6e8bfa00d25d28fd 100644
--- a/content/browser/storage_partition_impl_map.h
+++ b/content/browser/storage_partition_impl_map.h
@@ -51,8 +51,9 @@ class CONTENT_EXPORT StoragePartitionImplMap
//
// The |done| closure is executed on the calling thread when garbage
// collection is complete.
- void GarbageCollect(scoped_ptr<base::hash_set<base::FilePath> > active_paths,
- const base::Closure& done);
+ void GarbageCollect(
+ std::unique_ptr<base::hash_set<base::FilePath>> active_paths,
+ const base::Closure& done);
void ForEach(const BrowserContext::StoragePartitionCallback& callback);
« no previous file with comments | « content/browser/ssl/ssl_manager.h ('k') | content/browser/storage_partition_impl_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698