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

Unified Diff: content/browser/cache_storage/cache_storage_blob_to_disk_cache.cc

Issue 1545243002: Convert Pass()→std::move() in //content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: content/browser/cache_storage/cache_storage_blob_to_disk_cache.cc
diff --git a/content/browser/cache_storage/cache_storage_blob_to_disk_cache.cc b/content/browser/cache_storage/cache_storage_blob_to_disk_cache.cc
index 80a666cfd040f4b928c53368e8c5c3e4590b37d8..08dffc32323f6beab3a920f536ae128ee79243fa 100644
--- a/content/browser/cache_storage/cache_storage_blob_to_disk_cache.cc
+++ b/content/browser/cache_storage/cache_storage_blob_to_disk_cache.cc
@@ -4,6 +4,8 @@
#include "content/browser/cache_storage/cache_storage_blob_to_disk_cache.h"
+#include <utility>
+
#include "base/logging.h"
#include "net/base/io_buffer.h"
#include "net/url_request/url_request_context.h"
@@ -39,19 +41,19 @@ void CacheStorageBlobToDiskCache::StreamBlobToCache(
DCHECK(!blob_request_);
if (!request_context_getter->GetURLRequestContext()) {
- callback.Run(entry.Pass(), false /* success */);
+ callback.Run(std::move(entry), false /* success */);
return;
}
disk_cache_body_index_ = disk_cache_body_index;
- entry_ = entry.Pass();
+ entry_ = std::move(entry);
callback_ = callback;
request_context_getter_ = request_context_getter;
blob_request_ = storage::BlobProtocolHandler::CreateBlobRequest(
- blob_data_handle.Pass(), request_context_getter->GetURLRequestContext(),
- this);
+ std::move(blob_data_handle),
+ request_context_getter->GetURLRequestContext(), this);
request_context_getter_->AddObserver(this);
blob_request_->Start();
}
@@ -144,7 +146,7 @@ void CacheStorageBlobToDiskCache::RunCallbackAndRemoveObserver(bool success) {
request_context_getter_->RemoveObserver(this);
blob_request_.reset();
- callback_.Run(entry_.Pass(), success);
+ callback_.Run(std::move(entry_), success);
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698