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

Unified Diff: Source/web/MIDIClientProxy.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/LocalFileSystemClient.cpp ('k') | Source/web/MIDIClientProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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*);
« no previous file with comments | « Source/web/LocalFileSystemClient.cpp ('k') | Source/web/MIDIClientProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698