| Index: Source/web/MIDIClientProxy.h
|
| diff --git a/Source/web/MIDIClientProxy.h b/Source/web/MIDIClientProxy.h
|
| index 122c73ad9670ef6af66867502496fd5a18629c66..467bc73d5d180da49dc5fe97204d3561ec28ac32 100644
|
| --- a/Source/web/MIDIClientProxy.h
|
| +++ b/Source/web/MIDIClientProxy.h
|
| @@ -34,7 +34,7 @@
|
| #include "modules/webmidi/MIDIClient.h"
|
| #include "platform/heap/Handle.h"
|
|
|
| -namespace WebCore {
|
| +namespace blink {
|
| class MIDIAccessInitializer;
|
| }
|
|
|
| @@ -42,16 +42,16 @@ namespace blink {
|
|
|
| class WebMIDIClient;
|
|
|
| -class MIDIClientProxy FINAL : public WebCore::MIDIClient {
|
| +class MIDIClientProxy FINAL : public blink::MIDIClient {
|
| public:
|
| static PassOwnPtr<MIDIClientProxy> create(WebMIDIClient* client)
|
| {
|
| return adoptPtr(new MIDIClientProxy(client));
|
| }
|
|
|
| - // WebCore::MIDIClient
|
| - virtual void requestSysexPermission(WebCore::MIDIAccessInitializer*) OVERRIDE;
|
| - virtual void cancelSysexPermissionRequest(WebCore::MIDIAccessInitializer*) OVERRIDE;
|
| + // blink::MIDIClient
|
| + virtual void requestSysexPermission(blink::MIDIAccessInitializer*) OVERRIDE;
|
| + virtual void cancelSysexPermissionRequest(blink::MIDIAccessInitializer*) OVERRIDE;
|
|
|
| private:
|
| explicit MIDIClientProxy(WebMIDIClient*);
|
|
|