OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MIDIOutput
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIOutput.h
44
class
MIDIOutput
: public MIDIPort {
46
static PassRefPtr<
MIDIOutput
> create(MIDIAccess*, unsigned portIndex, ExecutionContext*, const String& id, const String& manufacturer, const String& name, const String& version);
47
virtual ~
MIDIOutput
();
59
MIDIOutput
(MIDIAccess*, unsigned portIndex, ExecutionContext*, const String& id, const String& manufacturer, const String& name, const String& version);
65
typedef Vector<RefPtr<
MIDIOutput
> > MIDIOutputVector;
MIDIOutput.cpp
32
#include "modules/webmidi/
MIDIOutput
.h"
40
PassRefPtr<
MIDIOutput
>
MIDIOutput
::create(MIDIAccess* access, unsigned portIndex, ExecutionContext* context, const String& id, const String& manufacturer, const String& name, const String& version)
43
RefPtr<
MIDIOutput
> output = adoptRef(new
MIDIOutput
(access, portIndex, context, id, manufacturer, name, version));
48
MIDIOutput
::
MIDIOutput
(MIDIAccess* access, unsigned portIndex, ExecutionContext* context, const String& id, const String& manufacturer, const String& name, const String& version)
56
MIDIOutput
::~
MIDIOutput
()
60
void
MIDIOutput
::send(Uint8Array* array, double timestamp, ExceptionState& exceptionState
[
all
...]
Completed in 70 milliseconds