| Index: content/browser/appcache/appcache_disk_cache.cc
|
| diff --git a/content/browser/appcache/appcache_disk_cache.cc b/content/browser/appcache/appcache_disk_cache.cc
|
| index f7cbc5857ea3bacbbf1dff10e9ccc158b3d7dde0..49030f000a98cd254bc0b41f22ca3fb53629777f 100644
|
| --- a/content/browser/appcache/appcache_disk_cache.cc
|
| +++ b/content/browser/appcache/appcache_disk_cache.cc
|
| @@ -5,6 +5,7 @@
|
| #include "content/browser/appcache/appcache_disk_cache.h"
|
|
|
| #include <limits>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| @@ -369,7 +370,7 @@ int AppCacheDiskCache::Init(
|
|
|
| void AppCacheDiskCache::OnCreateBackendComplete(int rv) {
|
| if (rv == net::OK) {
|
| - disk_cache_ = create_backend_callback_->backend_ptr_.Pass();
|
| + disk_cache_ = std::move(create_backend_callback_->backend_ptr_);
|
| }
|
| create_backend_callback_ = NULL;
|
|
|
|
|