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

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

Issue 16288002: Web MIDI API (work in progress) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add accessApproved() 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
« no previous file with comments | « Source/modules/webmidi/MIDIAccess.h ('k') | Source/modules/webmidi/MIDIAccessFuture.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ScriptWrappable::init(this); 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 // For now just ask for basic access.
64 // FIXME: use dictionary information to determine the value here.
65 m_midiAccessor->requestAccess(0);
66 }
67
68 void MIDIAccess::receiveMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp)
69 {
70 // FIXME: for now ignore portIndex and always use port 0 -- see "Just for te sting" above.
71 // printf("ignoring port: %d\n", portIndex);
72 portIndex = 0;
73
74 if (portIndex < m_inputs.size())
75 m_inputs[portIndex]->receiveMIDIData(portIndex, data, length, timeStamp) ;
76 }
77
78 void MIDIAccess::addInputPort(const String& id, const String& manufacturer, cons t String& name, const String& version)
79 {
80 RefPtr<MIDIInput> input = MIDIInput::create(scriptExecutionContext(), id, ma nufacturer, name, version);
81 m_inputs.append(input);
82 }
83
84 void MIDIAccess::addOutputPort(const String& id, const String& manufacturer, con st String& name, const String& version)
85 {
86 RefPtr<MIDIOutput> output = MIDIOutput::create(scriptExecutionContext(), id, manufacturer, name, version);
87 m_outputs.append(output);
88 }
89
90 void MIDIAccess::accessApproved(bool approved)
91 {
92 // FIXME: call callbacks.
58 } 93 }
59 94
60 } // namespace WebCore 95 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/modules/webmidi/MIDIAccess.h ('k') | Source/modules/webmidi/MIDIAccessFuture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698