| Index: third_party/WebKit/Source/platform/exported/WebThreadSafeData.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebThreadSafeData.cpp b/third_party/WebKit/Source/platform/exported/WebThreadSafeData.cpp
|
| index 28e2f10bc5a9e07ffe079dd13a839a271de79fd4..b9b090061ff5e680dcd003bdc948dfc6126a5bf1 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebThreadSafeData.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebThreadSafeData.cpp
|
| @@ -62,6 +62,9 @@ const char* WebThreadSafeData::Data() const {
|
| WebThreadSafeData::WebThreadSafeData(PassRefPtr<RawData> data)
|
| : private_(std::move(data)) {}
|
|
|
| +WebThreadSafeData::WebThreadSafeData(RefPtr<RawData>&& data)
|
| + : private_(std::move(data)) {}
|
| +
|
| WebThreadSafeData::WebThreadSafeData(const WebThreadSafeData& other) {
|
| private_ = other.private_;
|
| }
|
|
|