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

Unified Diff: components/nacl/renderer/manifest_downloader.cc

Issue 1548203002: Convert Pass()→std::move() in //components/[n-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad headers Created 5 years 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 | « components/nacl/renderer/file_downloader.cc ('k') | components/nacl/renderer/manifest_service_channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/renderer/manifest_downloader.cc
diff --git a/components/nacl/renderer/manifest_downloader.cc b/components/nacl/renderer/manifest_downloader.cc
index a3721ff06bb08633d4453ae307f39c86f8207d96..1aa89951b4b65e49242f31e87474a1008a40fe52 100644
--- a/components/nacl/renderer/manifest_downloader.cc
+++ b/components/nacl/renderer/manifest_downloader.cc
@@ -4,6 +4,8 @@
#include "components/nacl/renderer/manifest_downloader.h"
+#include <utility>
+
#include "base/callback.h"
#include "components/nacl/renderer/histogram.h"
#include "components/nacl/renderer/nexe_load_manager.h"
@@ -18,7 +20,7 @@ ManifestDownloader::ManifestDownloader(
scoped_ptr<blink::WebURLLoader> url_loader,
bool is_installed,
Callback cb)
- : url_loader_(url_loader.Pass()),
+ : url_loader_(std::move(url_loader)),
is_installed_(is_installed),
cb_(cb),
status_code_(-1),
« no previous file with comments | « components/nacl/renderer/file_downloader.cc ('k') | components/nacl/renderer/manifest_service_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698