Index: content/browser/browser_context.cc |
diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc |
index 566cdb56f359091624b61d05e015871e87180b37..fc3f644fba214656908804ba9084f8770210ac99 100644 |
--- a/content/browser/browser_context.cc |
+++ b/content/browser/browser_context.cc |
@@ -6,6 +6,7 @@ |
#include <stddef.h> |
#include <stdint.h> |
+#include <utility> |
#include "build/build_config.h" |
@@ -119,8 +120,8 @@ void BrowserContext::GarbageCollectStoragePartitions( |
BrowserContext* browser_context, |
scoped_ptr<base::hash_set<base::FilePath> > active_paths, |
const base::Closure& done) { |
- GetStoragePartitionMap(browser_context)->GarbageCollect( |
- active_paths.Pass(), done); |
+ GetStoragePartitionMap(browser_context) |
+ ->GarbageCollect(std::move(active_paths), done); |
} |
DownloadManager* BrowserContext::GetDownloadManager( |