OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/media/renderer_webmidiaccessor_impl.h" | 5 #include "content/renderer/media/renderer_webmidiaccessor_impl.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "content/renderer/media/midi_message_filter.h" | 8 #include "content/renderer/media/midi_message_filter.h" |
9 #include "content/renderer/render_thread_impl.h" | 9 #include "content/renderer/render_thread_impl.h" |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 void RendererWebMIDIAccessorImpl::startSession() { | 23 void RendererWebMIDIAccessorImpl::startSession() { |
24 midi_message_filter()->StartSession(client_); | 24 midi_message_filter()->StartSession(client_); |
25 } | 25 } |
26 | 26 |
27 void RendererWebMIDIAccessorImpl::sendMIDIData( | 27 void RendererWebMIDIAccessorImpl::sendMIDIData( |
28 unsigned port_index, | 28 unsigned port_index, |
29 const unsigned char* data, | 29 const unsigned char* data, |
30 size_t length, | 30 size_t length, |
31 double timestamp) { | 31 double timestamp) { |
32 midi_message_filter()->SendMIDIData( | 32 midi_message_filter()->SendMidiData( |
33 port_index, | 33 port_index, |
34 data, | 34 data, |
35 length, | 35 length, |
36 timestamp); | 36 timestamp); |
37 } | 37 } |
38 | 38 |
39 MIDIMessageFilter* RendererWebMIDIAccessorImpl::midi_message_filter() { | 39 MidiMessageFilter* RendererWebMIDIAccessorImpl::midi_message_filter() { |
40 return RenderThreadImpl::current()->midi_message_filter(); | 40 return RenderThreadImpl::current()->midi_message_filter(); |
41 } | 41 } |
42 | 42 |
43 } // namespace content | 43 } // namespace content |
OLD | NEW |