Index: content/browser/indexed_db/indexed_db_internals_ui.cc |
diff --git a/content/browser/indexed_db/indexed_db_internals_ui.cc b/content/browser/indexed_db/indexed_db_internals_ui.cc |
index 5b4d5d9288d9c583d899a6d4a55f14fb298ec37b..1e8926009dc077628577c58684ba60e67afa76fc 100644 |
--- a/content/browser/indexed_db/indexed_db_internals_ui.cc |
+++ b/content/browser/indexed_db/indexed_db_internals_ui.cc |
@@ -5,6 +5,7 @@ |
#include "content/browser/indexed_db/indexed_db_internals_ui.h" |
#include <string> |
+#include <utility> |
#include "base/bind.h" |
#include "base/files/scoped_temp_dir.h" |
@@ -312,7 +313,7 @@ void IndexedDBInternalsUI::OnDownloadDataReady( |
origin_url, |
temp_path, |
connection_count)); |
- dlm->DownloadUrl(dl_params.Pass()); |
+ dlm->DownloadUrl(std::move(dl_params)); |
} |
// The entire purpose of this class is to delete the temp file after |