| Index: storage/browser/fileapi/quota/quota_reservation_manager.cc
|
| diff --git a/storage/browser/fileapi/quota/quota_reservation_manager.cc b/storage/browser/fileapi/quota/quota_reservation_manager.cc
|
| index 6b69191bbc8f66e908b46e58064c665dc1a4701a..b6d2387ca057d6e6871c61c1e6b3853bd047bba8 100644
|
| --- a/storage/browser/fileapi/quota/quota_reservation_manager.cc
|
| +++ b/storage/browser/fileapi/quota/quota_reservation_manager.cc
|
| @@ -5,6 +5,7 @@
|
| #include "storage/browser/fileapi/quota/quota_reservation_manager.h"
|
|
|
| #include <stdint.h>
|
| +#include <utility>
|
|
|
| #include "storage/browser/fileapi/quota/quota_reservation.h"
|
| #include "storage/browser/fileapi/quota/quota_reservation_buffer.h"
|
| @@ -13,8 +14,7 @@ namespace storage {
|
|
|
| QuotaReservationManager::QuotaReservationManager(
|
| scoped_ptr<QuotaBackend> backend)
|
| - : backend_(backend.Pass()),
|
| - weak_ptr_factory_(this) {
|
| + : backend_(std::move(backend)), weak_ptr_factory_(this) {
|
| sequence_checker_.DetachFromSequence();
|
| }
|
|
|
|
|