| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 class ExecutionContext; | 46 class ExecutionContext; |
| 47 class MIDIInput; | 47 class MIDIInput; |
| 48 class MIDIInputMap; | 48 class MIDIInputMap; |
| 49 class MIDIOutput; | 49 class MIDIOutput; |
| 50 class MIDIOutputMap; | 50 class MIDIOutputMap; |
| 51 | 51 |
| 52 class MIDIAccess final : public RefCountedGarbageCollectedEventTargetWithInlineD
ata<MIDIAccess>, public ActiveScriptWrappable, public ActiveDOMObject, public MI
DIAccessorClient { | 52 class MIDIAccess final : public RefCountedGarbageCollectedEventTargetWithInlineD
ata<MIDIAccess>, public ActiveScriptWrappable, public ActiveDOMObject, public MI
DIAccessorClient { |
| 53 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(MIDIAccess); | 53 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(MIDIAccess); |
| 54 DEFINE_WRAPPERTYPEINFO(); | 54 DEFINE_WRAPPERTYPEINFO(); |
| 55 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MIDIAccess); | 55 USING_GARBAGE_COLLECTED_MIXIN(MIDIAccess); |
| 56 public: | 56 public: |
| 57 static MIDIAccess* create(PassOwnPtr<MIDIAccessor> accessor, bool sysexEnabl
ed, const Vector<MIDIAccessInitializer::PortDescriptor>& ports, ExecutionContext
* executionContext) | 57 static MIDIAccess* create(PassOwnPtr<MIDIAccessor> accessor, bool sysexEnabl
ed, const Vector<MIDIAccessInitializer::PortDescriptor>& ports, ExecutionContext
* executionContext) |
| 58 { | 58 { |
| 59 MIDIAccess* access = new MIDIAccess(accessor, sysexEnabled, ports, execu
tionContext); | 59 MIDIAccess* access = new MIDIAccess(accessor, sysexEnabled, ports, execu
tionContext); |
| 60 access->suspendIfNeeded(); | 60 access->suspendIfNeeded(); |
| 61 return access; | 61 return access; |
| 62 } | 62 } |
| 63 ~MIDIAccess() override; | 63 ~MIDIAccess() override; |
| 64 | 64 |
| 65 MIDIInputMap* inputs() const; | 65 MIDIInputMap* inputs() const; |
| 66 MIDIOutputMap* outputs() const; | 66 MIDIOutputMap* outputs() const; |
| 67 | 67 |
| 68 EventListener* onstatechange(); | 68 EventListener* onstatechange(); |
| 69 void setOnstatechange(PassRefPtrWillBeRawPtr<EventListener>); | 69 void setOnstatechange(RawPtr<EventListener>); |
| 70 | 70 |
| 71 bool sysexEnabled() const { return m_sysexEnabled; } | 71 bool sysexEnabled() const { return m_sysexEnabled; } |
| 72 | 72 |
| 73 // EventTarget | 73 // EventTarget |
| 74 const AtomicString& interfaceName() const override { return EventTargetNames
::MIDIAccess; } | 74 const AtomicString& interfaceName() const override { return EventTargetNames
::MIDIAccess; } |
| 75 ExecutionContext* getExecutionContext() const override { return ActiveDOMObj
ect::getExecutionContext(); } | 75 ExecutionContext* getExecutionContext() const override { return ActiveDOMObj
ect::getExecutionContext(); } |
| 76 | 76 |
| 77 // ActiveScriptWrappable | 77 // ActiveScriptWrappable |
| 78 bool hasPendingActivity() const final; | 78 bool hasPendingActivity() const final; |
| 79 | 79 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 108 OwnPtr<MIDIAccessor> m_accessor; | 108 OwnPtr<MIDIAccessor> m_accessor; |
| 109 bool m_sysexEnabled; | 109 bool m_sysexEnabled; |
| 110 bool m_hasPendingActivity; | 110 bool m_hasPendingActivity; |
| 111 HeapVector<Member<MIDIInput>> m_inputs; | 111 HeapVector<Member<MIDIInput>> m_inputs; |
| 112 HeapVector<Member<MIDIOutput>> m_outputs; | 112 HeapVector<Member<MIDIOutput>> m_outputs; |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace blink | 115 } // namespace blink |
| 116 | 116 |
| 117 #endif // MIDIAccess_h | 117 #endif // MIDIAccess_h |
| OLD | NEW |