| Index: content/browser/browser_context.cc
|
| diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc
|
| index 4b8396ed03e1ce529fab70fa38cc2ea8b92f0198..4e43792dc49378517c9ed82bf0ad8ffac87c36e2 100644
|
| --- a/content/browser/browser_context.cc
|
| +++ b/content/browser/browser_context.cc
|
| @@ -123,9 +123,9 @@ void BrowserContext::AsyncObliterateStoragePartition(
|
|
|
| // static
|
| void BrowserContext::GarbageCollectStoragePartitions(
|
| - BrowserContext* browser_context,
|
| - scoped_ptr<base::hash_set<base::FilePath> > active_paths,
|
| - const base::Closure& done) {
|
| + BrowserContext* browser_context,
|
| + std::unique_ptr<base::hash_set<base::FilePath>> active_paths,
|
| + const base::Closure& done) {
|
| GetStoragePartitionMap(browser_context)
|
| ->GarbageCollect(std::move(active_paths), done);
|
| }
|
|
|