| Index: third_party/WebKit/Source/core/html/parser/HTMLToken.h
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLToken.h b/third_party/WebKit/Source/core/html/parser/HTMLToken.h
|
| index 024e01ecee5fea6ec921b9eeee288449afc66baf..3c90de9d0e43e1797648b23f5abdb7d48e37c3d2 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLToken.h
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLToken.h
|
| @@ -256,7 +256,7 @@ public:
|
|
|
| PassOwnPtr<DoctypeData> releaseDoctypeData()
|
| {
|
| - return m_doctypeData.release();
|
| + return std::move(m_doctypeData);
|
| }
|
|
|
| /* Start/End Tag Tokens */
|
|
|