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

Side by Side Diff: content/browser/renderer_host/media/midi_host.cc

Issue 16025005: Web MIDI API back-end (work-in-progress) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "content/browser/renderer_host/media/midi_host.h"
6
7 #include "base/bind.h"
8 #include "base/bind_helpers.h"
9 #include "base/debug/trace_event.h"
10 #include "base/process.h"
11 #include "content/browser/browser_main_loop.h"
12 #include "content/browser/media/media_internals.h"
13 #include "content/common/media/midi_messages.h"
14 #include "content/public/browser/content_browser_client.h"
15 #include "content/public/browser/media_observer.h"
16 #include "media/midi/midi_manager.h"
17
18 using media::MIDIManager;
19 using media::MIDIPortInfoList;
20
21 namespace content {
22
23 MIDIHost::MIDIHost(media::MIDIManager* midi_manager)
24 : midi_manager_(midi_manager) {
25 }
26
27 MIDIHost::~MIDIHost() {
28 midi_manager_->ReleaseAccess(this);
29 }
30
31 void MIDIHost::OnChannelClosing() {
32 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
33
34 BrowserMessageFilter::OnChannelClosing();
35 }
36
37 void MIDIHost::OnDestruct() const {
38 BrowserThread::DeleteOnIOThread::Destruct(this);
39 }
40
41 ///////////////////////////////////////////////////////////////////////////////
42 // IPC Messages handler
43 bool MIDIHost::OnMessageReceived(const IPC::Message& message,
44 bool* message_was_ok) {
45 bool handled = true;
46 IPC_BEGIN_MESSAGE_MAP_EX(MIDIHost, message, *message_was_ok)
47 IPC_MESSAGE_HANDLER(MIDIHostMsg_RequestAccess, OnRequestAccess)
48 IPC_MESSAGE_HANDLER(MIDIHostMsg_SendData, OnSendData)
49 IPC_MESSAGE_UNHANDLED(handled = false)
50 IPC_END_MESSAGE_MAP_EX()
51
52 return handled;
53 }
54
55 void MIDIHost::OnRequestAccess(int client_id, int access) {
56 MIDIPortInfoList input_ports;
57 MIDIPortInfoList output_ports;
58
59 // Ask permission and register to receive MIDI data.
60 bool approved = midi_manager_->RequestAccess(this, access);
61
62 if (approved) {
63 input_ports = midi_manager_->input_ports();
64 output_ports = midi_manager_->output_ports();
65 }
66
67 Send(new MIDIMsg_AccessApproved(
68 client_id,
69 access,
70 approved,
71 input_ports,
72 output_ports));
73 }
74
75 void MIDIHost::OnSendData(int port,
76 const std::vector<uint8>& data,
77 double timestamp) {
78 midi_manager_->SendMIDIData(port, data.data(), data.size(), timestamp);
79 }
80
81 void MIDIHost::ReceiveMIDIData(
82 int port_index,
83 const uint8* data,
84 size_t length,
85 double timestamp) {
86 TRACE_EVENT0("midi", "MIDIHost::ReceiveMIDIData");
87 // Send to the renderer.
88 std::vector<uint8> v(data, data + length);
89 Send(new MIDIMsg_DataReceived(port_index, v, timestamp));
90 }
91
92 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698