Index: net/disk_cache/memory/mem_entry_impl.cc |
diff --git a/net/disk_cache/memory/mem_entry_impl.cc b/net/disk_cache/memory/mem_entry_impl.cc |
index 55cdd14b3bfac758a1d0f6f029d0e416d0be0753..692551866a6b71ef1cc2b155fcbc769df9111fc3 100644 |
--- a/net/disk_cache/memory/mem_entry_impl.cc |
+++ b/net/disk_cache/memory/mem_entry_impl.cc |
@@ -4,6 +4,8 @@ |
#include "net/disk_cache/memory/mem_entry_impl.h" |
+#include <utility> |
+ |
#include "base/bind.h" |
#include "base/logging.h" |
#include "base/strings/stringprintf.h" |
@@ -52,7 +54,7 @@ scoped_ptr<base::Value> NetLogChildEntryCreationCallback( |
scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue()); |
dict->SetString("key", GenerateChildName(parent->GetKey(), child_id)); |
dict->SetBoolean("created", true); |
- return dict.Pass(); |
+ return std::move(dict); |
} |
} // namespace |