OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 30 matching lines...) Expand all Loading... |
41 : receivedTime(0.0) | 41 : receivedTime(0.0) |
42 { | 42 { |
43 }; | 43 }; |
44 | 44 |
45 double receivedTime; | 45 double receivedTime; |
46 RefPtr<Uint8Array> data; | 46 RefPtr<Uint8Array> data; |
47 }; | 47 }; |
48 | 48 |
49 class MIDIMessageEvent FINAL : public Event { | 49 class MIDIMessageEvent FINAL : public Event { |
50 public: | 50 public: |
51 static PassRefPtrWillBeRawPtr<MIDIMessageEvent> create() | 51 static PassRefPtr<MIDIMessageEvent> create() |
52 { | 52 { |
53 return adoptRefWillBeRefCountedGarbageCollected(new MIDIMessageEvent()); | 53 return adoptRef(new MIDIMessageEvent()); |
54 } | 54 } |
55 | 55 |
56 static PassRefPtrWillBeRawPtr<MIDIMessageEvent> create(double receivedTime,
PassRefPtr<Uint8Array> data) | 56 static PassRefPtr<MIDIMessageEvent> create(double receivedTime, PassRefPtr<U
int8Array> data) |
57 { | 57 { |
58 return adoptRefWillBeRefCountedGarbageCollected(new MIDIMessageEvent(rec
eivedTime, data)); | 58 return adoptRef(new MIDIMessageEvent(receivedTime, data)); |
59 } | 59 } |
60 | 60 |
61 static PassRefPtrWillBeRawPtr<MIDIMessageEvent> create(const AtomicString& t
ype, const MIDIMessageEventInit& initializer) | 61 static PassRefPtr<MIDIMessageEvent> create(const AtomicString& type, const M
IDIMessageEventInit& initializer) |
62 { | 62 { |
63 return adoptRefWillBeRefCountedGarbageCollected(new MIDIMessageEvent(typ
e, initializer)); | 63 return adoptRef(new MIDIMessageEvent(type, initializer)); |
64 } | 64 } |
65 | 65 |
66 double receivedTime() { return m_receivedTime; } | 66 double receivedTime() { return m_receivedTime; } |
67 PassRefPtr<Uint8Array> data() { return m_data; } | 67 PassRefPtr<Uint8Array> data() { return m_data; } |
68 | 68 |
69 virtual const AtomicString& interfaceName() const OVERRIDE { return EventNam
es::MIDIMessageEvent; } | 69 virtual const AtomicString& interfaceName() const OVERRIDE { return EventNam
es::MIDIMessageEvent; } |
70 | 70 |
71 virtual void trace(Visitor* visitor) OVERRIDE { Event::trace(visitor); } | 71 virtual void trace(Visitor* visitor) OVERRIDE { Event::trace(visitor); } |
72 | 72 |
73 private: | 73 private: |
(...skipping 19 matching lines...) Expand all Loading... |
93 ScriptWrappable::init(this); | 93 ScriptWrappable::init(this); |
94 } | 94 } |
95 | 95 |
96 double m_receivedTime; | 96 double m_receivedTime; |
97 RefPtr<Uint8Array> m_data; | 97 RefPtr<Uint8Array> m_data; |
98 }; | 98 }; |
99 | 99 |
100 } // namespace WebCore | 100 } // namespace WebCore |
101 | 101 |
102 #endif // MIDIMessageEvent_h | 102 #endif // MIDIMessageEvent_h |
OLD | NEW |