Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(360)

Side by Side Diff: Source/core/events/CustomEvent.h

Issue 1130763006: IDL: Add any support to IDL dictionary and use it in CustomEventInit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef CustomEvent_h 26 #ifndef CustomEvent_h
27 #define CustomEvent_h 27 #define CustomEvent_h
28 28
29 #include "core/CoreExport.h" 29 #include "core/CoreExport.h"
30 #include "core/events/CustomEventInit.h"
30 #include "core/events/Event.h" 31 #include "core/events/Event.h"
31 32
32 namespace blink { 33 namespace blink {
33 34
34 class SerializedScriptValue; 35 class SerializedScriptValue;
35 36
36 typedef EventInit CustomEventInit;
37
38 class CORE_EXPORT CustomEvent final : public Event { 37 class CORE_EXPORT CustomEvent final : public Event {
39 DEFINE_WRAPPERTYPEINFO(); 38 DEFINE_WRAPPERTYPEINFO();
40 public: 39 public:
41 virtual ~CustomEvent(); 40 virtual ~CustomEvent();
42 41
43 static PassRefPtrWillBeRawPtr<CustomEvent> create() 42 static PassRefPtrWillBeRawPtr<CustomEvent> create()
44 { 43 {
45 return adoptRefWillBeNoop(new CustomEvent); 44 return adoptRefWillBeNoop(new CustomEvent);
46 } 45 }
47 46
48 static PassRefPtrWillBeRawPtr<CustomEvent> create(const AtomicString& type, const CustomEventInit& initializer) 47 static PassRefPtrWillBeRawPtr<CustomEvent> create(const AtomicString& type, const CustomEventInit& initializer)
49 { 48 {
50 return adoptRefWillBeNoop(new CustomEvent(type, initializer)); 49 return adoptRefWillBeNoop(new CustomEvent(type, initializer));
51 } 50 }
52 51
53 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelab le, PassRefPtr<SerializedScriptValue>); 52 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelab le, PassRefPtr<SerializedScriptValue>);
54 53
55 virtual const AtomicString& interfaceName() const override; 54 virtual const AtomicString& interfaceName() const override;
56 55
57 SerializedScriptValue* serializedDetail() { return m_serializedDetail.get(); } 56 SerializedScriptValue* serializedDetail() { return m_serializedDetail.get(); }
58 57
59 void setSerializedDetail(PassRefPtr<SerializedScriptValue> detail) 58 ScriptValue detail() { return m_detail; }
haraken 2015/05/18 01:59:44 Add const.
bashi 2015/05/20 00:22:01 Done.
60 { 59 void setDetail(ScriptValue detail) { m_detail = detail; }
61 ASSERT(!m_serializedDetail);
62 m_serializedDetail = detail;
63 }
64 60
65 DECLARE_VIRTUAL_TRACE(); 61 DECLARE_VIRTUAL_TRACE();
66 62
67 private: 63 private:
68 CustomEvent(); 64 CustomEvent();
69 CustomEvent(const AtomicString& type, const CustomEventInit& initializer); 65 CustomEvent(const AtomicString& type, const CustomEventInit& initializer);
70 66
67 ScriptValue m_detail;
71 RefPtr<SerializedScriptValue> m_serializedDetail; 68 RefPtr<SerializedScriptValue> m_serializedDetail;
72 }; 69 };
73 70
74 } // namespace blink 71 } // namespace blink
75 72
76 #endif // CustomEvent_h 73 #endif // CustomEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698