| Index: third_party/WebKit/Source/core/events/CustomEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/CustomEvent.h b/third_party/WebKit/Source/core/events/CustomEvent.h
|
| index 82d5f357081a276ef90f0fac1c6cb51382693d19..9ae76f8477bbfce0110b30bc9487eb8ec39c322a 100644
|
| --- a/third_party/WebKit/Source/core/events/CustomEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/CustomEvent.h
|
| @@ -55,8 +55,7 @@ public:
|
| const AtomicString& interfaceName() const override;
|
|
|
| SerializedScriptValue* serializedDetail() { return m_serializedDetail.get(); }
|
| -
|
| - ScriptValue detail() const { return m_detail; }
|
| + void setSerializedDetail(PassRefPtr<SerializedScriptValue> serializedDetail) { m_serializedDetail = serializedDetail; }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -64,7 +63,6 @@ private:
|
| CustomEvent();
|
| CustomEvent(const AtomicString& type, const CustomEventInit& initializer);
|
|
|
| - ScriptValue m_detail;
|
| RefPtr<SerializedScriptValue> m_serializedDetail;
|
| };
|
|
|
|
|