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

Unified Diff: Source/modules/webmidi/MIDIAccessor.h

Issue 461163002: Cleanup namespace usage in Source/core/modules/[mediasource/* to websockets/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/modules/webdatabase/DatabaseThread.h ('k') | Source/modules/websockets/NewWebSocketChannelImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIAccessor.h
diff --git a/Source/modules/webmidi/MIDIAccessor.h b/Source/modules/webmidi/MIDIAccessor.h
index 56b414b1a68356a64a2d8669290c003c609c2978..9802b3ce68c5b86abe092bb0d141dcd6394ba85e 100644
--- a/Source/modules/webmidi/MIDIAccessor.h
+++ b/Source/modules/webmidi/MIDIAccessor.h
@@ -40,7 +40,7 @@ namespace blink {
class MIDIAccessorClient;
-class MIDIAccessor FINAL : public blink::WebMIDIAccessorClient {
+class MIDIAccessor FINAL : public WebMIDIAccessorClient {
public:
static PassOwnPtr<MIDIAccessor> create(MIDIAccessorClient*);
@@ -53,17 +53,17 @@ public:
// once the initialization successfully finishes.
void setClient(MIDIAccessorClient* client) { m_client = client; }
- // blink::WebMIDIAccessorClient
- virtual void didAddInputPort(const blink::WebString& id, const blink::WebString& manufacturer, const blink::WebString& name, const blink::WebString& version) OVERRIDE;
- virtual void didAddOutputPort(const blink::WebString& id, const blink::WebString& manufacturer, const blink::WebString& name, const blink::WebString& version) OVERRIDE;
- virtual void didStartSession(bool success, const blink::WebString& error, const blink::WebString& message) OVERRIDE;
+ // WebMIDIAccessorClient
+ virtual void didAddInputPort(const WebString& id, const WebString& manufacturer, const WebString& name, const WebString& version) OVERRIDE;
+ virtual void didAddOutputPort(const WebString& id, const WebString& manufacturer, const WebString& name, const WebString& version) OVERRIDE;
+ virtual void didStartSession(bool success, const WebString& error, const WebString& message) OVERRIDE;
virtual void didReceiveMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp) OVERRIDE;
private:
explicit MIDIAccessor(MIDIAccessorClient*);
MIDIAccessorClient* m_client;
- OwnPtr<blink::WebMIDIAccessor> m_accessor;
+ OwnPtr<WebMIDIAccessor> m_accessor;
};
} // namespace blink
« no previous file with comments | « Source/modules/webdatabase/DatabaseThread.h ('k') | Source/modules/websockets/NewWebSocketChannelImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698