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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 } | 47 } |
48 | 48 |
49 MIDIAccess::~MIDIAccess() | 49 MIDIAccess::~MIDIAccess() |
50 { | 50 { |
51 stop(); | 51 stop(); |
52 } | 52 } |
53 | 53 |
54 MIDIAccess::MIDIAccess(ScriptExecutionContext* context) | 54 MIDIAccess::MIDIAccess(ScriptExecutionContext* context) |
55 : ActiveDOMObject(context) | 55 : ActiveDOMObject(context) |
56 { | 56 { |
| 57 // !!!!!!! Just for testing |
| 58 RefPtr<MIDIInput> input = MIDIInput::create(context, "id", "manufacturer", "
name", "version"); |
| 59 m_inputs.append(input); |
| 60 |
| 61 m_midiAccessor = MIDIAccessor::create(this); |
| 62 } |
| 63 |
| 64 void MIDIAccess::receiveMIDIData(unsigned portIndex, const unsigned char* data,
size_t length, double timeStamp) |
| 65 { |
| 66 // printf("MIDIAccess::receiveMIDIData() : isMainThread() = %d\n", (int)isMa
inThread() ); |
| 67 if (portIndex < m_inputs.size()) |
| 68 m_inputs[portIndex]->receiveMIDIData(portIndex, data, length, timeStamp)
; |
57 } | 69 } |
58 | 70 |
59 } // namespace WebCore | 71 } // namespace WebCore |
OLD | NEW |