| Index: chrome/browser/safe_browsing/safe_browsing_util.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_util.cc b/chrome/browser/safe_browsing/safe_browsing_util.cc
|
| index 167e103f7f3e1621585685d57b60e2e1ec294575..5e0b9e0bad5aea925268b4ea42eda1132c984592 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_util.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_util.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/safe_browsing/safe_browsing_util.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "chrome/browser/safe_browsing/chunk.pb.h"
|
| @@ -23,7 +25,7 @@ SBChunkData::SBChunkData() {
|
| }
|
|
|
| SBChunkData::SBChunkData(scoped_ptr<ChunkData> data)
|
| - : chunk_data_(data.Pass()) {
|
| + : chunk_data_(std::move(data)) {
|
| DCHECK(chunk_data_.get());
|
| }
|
|
|
|
|