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

Side by Side Diff: Source/modules/webmidi/MIDIInput.cpp

Issue 962523005: Web MIDI: add open() and close() to MIDIPort (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: promise is awesome Created 5 years, 9 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
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 #include "config.h" 31 #include "config.h"
32 #include "modules/webmidi/MIDIInput.h" 32 #include "modules/webmidi/MIDIInput.h"
33 33
34 #include "modules/webmidi/MIDIAccess.h" 34 #include "modules/webmidi/MIDIAccess.h"
35 #include "modules/webmidi/MIDIMessageEvent.h" 35 #include "modules/webmidi/MIDIMessageEvent.h"
36 #include "platform/heap/Handle.h" 36 #include "platform/heap/Handle.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 MIDIInput* MIDIInput::create(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, const String& version, bool isActive) 40 using PortState = MIDIAccessor::MIDIPortState;
41
42 MIDIInput* MIDIInput::create(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, const String& version, PortState state)
41 { 43 {
42 ASSERT(access); 44 ASSERT(access);
43 return new MIDIInput(access, id, manufacturer, name, version, isActive); 45 return new MIDIInput(access, id, manufacturer, name, version, state);
44 } 46 }
45 47
46 MIDIInput::MIDIInput(MIDIAccess* access, const String& id, const String& manufac turer, const String& name, const String& version, bool isActive) 48 MIDIInput::MIDIInput(MIDIAccess* access, const String& id, const String& manufac turer, const String& name, const String& version, PortState state)
47 : MIDIPort(access, id, manufacturer, name, MIDIPortTypeInput, version, isAct ive) 49 : MIDIPort(access, id, manufacturer, name, MIDIPortTypeInput, version, state )
48 { 50 {
49 } 51 }
50 52
51 void MIDIInput::didReceiveMIDIData(unsigned portIndex, const unsigned char* data , size_t length, double timeStamp) 53 void MIDIInput::didReceiveMIDIData(unsigned portIndex, const unsigned char* data , size_t length, double timeStamp)
52 { 54 {
53 ASSERT(isMainThread()); 55 ASSERT(isMainThread());
54 56
55 if (!length) 57 if (!length)
56 return; 58 return;
57 59
58 // Drop sysex message here when the client does not request it. Note that th is is not a security check but an 60 // Drop sysex message here when the client does not request it. Note that th is is not a security check but an
59 // automatic filtering for clients that do not want sysex message. Also note that sysex message will never be sent 61 // automatic filtering for clients that do not want sysex message. Also note that sysex message will never be sent
60 // unless the current process has an explicit permission to handle sysex mes sage. 62 // unless the current process has an explicit permission to handle sysex mes sage.
61 if (data[0] == 0xf0 && !midiAccess()->sysexEnabled()) 63 if (data[0] == 0xf0 && !midiAccess()->sysexEnabled())
62 return; 64 return;
63 RefPtr<DOMUint8Array> array = DOMUint8Array::create(data, length); 65 RefPtr<DOMUint8Array> array = DOMUint8Array::create(data, length);
64 dispatchEvent(MIDIMessageEvent::create(timeStamp, array)); 66 dispatchEvent(MIDIMessageEvent::create(timeStamp, array));
65 } 67 }
66 68
67 DEFINE_TRACE(MIDIInput) 69 DEFINE_TRACE(MIDIInput)
68 { 70 {
69 MIDIPort::trace(visitor); 71 MIDIPort::trace(visitor);
70 } 72 }
71 73
72 } // namespace blink 74 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698