| Index: public/web/WebMIDIClient.h
|
| diff --git a/public/web/WebMIDIClient.h b/public/web/WebMIDIClient.h
|
| index 47b4e00e4350ff0baf52abc06d63b2a346b165d5..86f39c10261236ca29ba6aeab52af47f512856c2 100644
|
| --- a/public/web/WebMIDIClient.h
|
| +++ b/public/web/WebMIDIClient.h
|
| @@ -39,14 +39,9 @@ public:
|
| virtual ~WebMIDIClient() { }
|
|
|
| // Request a permission to use system exclusive messages. Called when MIDIOptions.sysex is true.
|
| - // FIXME: Make following new functions pure virtual once Chromium implements them.
|
| - virtual void requestSysexPermission(const WebMIDIPermissionRequest&) { };
|
| + virtual void requestSysexPermission(const WebMIDIPermissionRequest&) = 0;
|
| // Cancel the request since the requesting frame may be moving to a new page.
|
| - virtual void cancelSysexPermissionRequest(const WebMIDIPermissionRequest&) { };
|
| -
|
| - // FIXME: Remove following old functions once Chromium usess new functions.
|
| - virtual void requestSysExPermission(const WebMIDIPermissionRequest&) { };
|
| - virtual void cancelSysExPermissionRequest(const WebMIDIPermissionRequest&) { };
|
| + virtual void cancelSysexPermissionRequest(const WebMIDIPermissionRequest&) = 0;
|
| };
|
|
|
| } // namespace blink
|
|
|