| Index: content/browser/renderer_host/media/midi_host.h
|
| diff --git a/content/browser/renderer_host/media/midi_host.h b/content/browser/renderer_host/media/midi_host.h
|
| index f6b2813264e51e0b570d4383702e764e3f394743..1e08829bc627bfc6179f782d78628862936295b0 100644
|
| --- a/content/browser/renderer_host/media/midi_host.h
|
| +++ b/content/browser/renderer_host/media/midi_host.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_MIDI_HOST_H_
|
| #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_MIDI_HOST_H_
|
|
|
| +#include <vector>
|
| +
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "content/common/content_export.h"
|
| @@ -33,7 +35,7 @@ class CONTENT_EXPORT MIDIHost
|
|
|
| // MIDIManagerClient implementation.
|
| virtual void ReceiveMIDIData(
|
| - int port_index,
|
| + uint32 port,
|
| const uint8* data,
|
| size_t length,
|
| double timestamp) OVERRIDE;
|
| @@ -43,7 +45,7 @@ class CONTENT_EXPORT MIDIHost
|
| void OnStartSession(int client_id);
|
|
|
| // Data to be sent to a MIDI output port.
|
| - void OnSendData(int port,
|
| + void OnSendData(uint32 port,
|
| const std::vector<uint8>& data,
|
| double timestamp);
|
|
|
|
|