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