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

Side by Side Diff: Source/modules/webmidi/MIDIAccess.h

Issue 513203002: Introduce MIDIInputMap and MIDIOutputMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@iterator-adhoc
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/webmidi/MIDIAccess.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 19 matching lines...) Expand all
30 30
31 #ifndef MIDIAccess_h 31 #ifndef MIDIAccess_h
32 #define MIDIAccess_h 32 #define MIDIAccess_h
33 33
34 #include "bindings/core/v8/ScriptPromise.h" 34 #include "bindings/core/v8/ScriptPromise.h"
35 #include "core/dom/ActiveDOMObject.h" 35 #include "core/dom/ActiveDOMObject.h"
36 #include "modules/EventTargetModules.h" 36 #include "modules/EventTargetModules.h"
37 #include "modules/webmidi/MIDIAccessInitializer.h" 37 #include "modules/webmidi/MIDIAccessInitializer.h"
38 #include "modules/webmidi/MIDIAccessor.h" 38 #include "modules/webmidi/MIDIAccessor.h"
39 #include "modules/webmidi/MIDIAccessorClient.h" 39 #include "modules/webmidi/MIDIAccessorClient.h"
40 #include "modules/webmidi/MIDIInput.h"
41 #include "modules/webmidi/MIDIOutput.h"
42 #include "platform/heap/Handle.h" 40 #include "platform/heap/Handle.h"
43 #include "wtf/Vector.h" 41 #include "wtf/Vector.h"
44 42
45 namespace blink { 43 namespace blink {
46 44
47 class ExecutionContext; 45 class ExecutionContext;
46 class MIDIInput;
47 class MIDIInputMap;
48 class MIDIOutput;
49 class MIDIOutputMap;
48 struct MIDIOptions; 50 struct MIDIOptions;
49 51
50 class MIDIAccess FINAL : public RefCountedGarbageCollectedWillBeGarbageCollected Finalized<MIDIAccess>, public ActiveDOMObject, public EventTargetWithInlineData, public MIDIAccessorClient { 52 class MIDIAccess FINAL : public RefCountedGarbageCollectedWillBeGarbageCollected Finalized<MIDIAccess>, public ActiveDOMObject, public EventTargetWithInlineData, public MIDIAccessorClient {
51 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<M IDIAccess>); 53 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<M IDIAccess>);
52 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MIDIAccess); 54 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MIDIAccess);
53 public: 55 public:
54 static MIDIAccess* create(PassOwnPtr<MIDIAccessor> accessor, bool sysexEnabl ed, const Vector<MIDIAccessInitializer::PortDescriptor>& ports, ExecutionContext * executionContext) 56 static MIDIAccess* create(PassOwnPtr<MIDIAccessor> accessor, bool sysexEnabl ed, const Vector<MIDIAccessInitializer::PortDescriptor>& ports, ExecutionContext * executionContext)
55 { 57 {
56 MIDIAccess* access = new MIDIAccess(accessor, sysexEnabled, ports, execu tionContext); 58 MIDIAccess* access = new MIDIAccess(accessor, sysexEnabled, ports, execu tionContext);
57 access->suspendIfNeeded(); 59 access->suspendIfNeeded();
58 return access; 60 return access;
59 } 61 }
60 virtual ~MIDIAccess(); 62 virtual ~MIDIAccess();
61 63
62 MIDIInputVector inputs() const { return m_inputs; } 64 MIDIInputMap* inputs() const;
63 MIDIOutputVector outputs() const { return m_outputs; } 65 MIDIOutputMap* outputs() const;
64 66
65 DEFINE_ATTRIBUTE_EVENT_LISTENER(connect); 67 DEFINE_ATTRIBUTE_EVENT_LISTENER(connect);
66 DEFINE_ATTRIBUTE_EVENT_LISTENER(disconnect); 68 DEFINE_ATTRIBUTE_EVENT_LISTENER(disconnect);
67 69
68 bool sysexEnabled() const { return m_sysexEnabled; } 70 bool sysexEnabled() const { return m_sysexEnabled; }
69 71
70 // EventTarget 72 // EventTarget
71 virtual const AtomicString& interfaceName() const OVERRIDE { return EventTar getNames::MIDIAccess; } 73 virtual const AtomicString& interfaceName() const OVERRIDE { return EventTar getNames::MIDIAccess; }
72 virtual ExecutionContext* executionContext() const OVERRIDE { return ActiveD OMObject::executionContext(); } 74 virtual ExecutionContext* executionContext() const OVERRIDE { return ActiveD OMObject::executionContext(); }
73 75
(...skipping 14 matching lines...) Expand all
88 // |timeStampInMilliseconds| is in the same time coordinate system as perfor mance.now(). 90 // |timeStampInMilliseconds| is in the same time coordinate system as perfor mance.now().
89 void sendMIDIData(unsigned portIndex, const unsigned char* data, size_t leng th, double timeStampInMilliseconds); 91 void sendMIDIData(unsigned portIndex, const unsigned char* data, size_t leng th, double timeStampInMilliseconds);
90 92
91 virtual void trace(Visitor*) OVERRIDE; 93 virtual void trace(Visitor*) OVERRIDE;
92 94
93 private: 95 private:
94 MIDIAccess(PassOwnPtr<MIDIAccessor>, bool sysexEnabled, const Vector<MIDIAcc essInitializer::PortDescriptor>&, ExecutionContext*); 96 MIDIAccess(PassOwnPtr<MIDIAccessor>, bool sysexEnabled, const Vector<MIDIAcc essInitializer::PortDescriptor>&, ExecutionContext*);
95 97
96 OwnPtr<MIDIAccessor> m_accessor; 98 OwnPtr<MIDIAccessor> m_accessor;
97 bool m_sysexEnabled; 99 bool m_sysexEnabled;
98 MIDIInputVector m_inputs; 100 HeapVector<Member<MIDIInput> > m_inputs;
99 MIDIOutputVector m_outputs; 101 HeapVector<Member<MIDIOutput> > m_outputs;
100 }; 102 };
101 103
102 } // namespace blink 104 } // namespace blink
103 105
104 #endif // MIDIAccess_h 106 #endif // MIDIAccess_h
OLDNEW
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/webmidi/MIDIAccess.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698