Index: content/renderer/media/midi_message_filter.h |
diff --git a/content/renderer/media/midi_message_filter.h b/content/renderer/media/midi_message_filter.h |
index 4b8481fbc57690810adabe18ad8d5c5c9b1805b1..c2e66ae4d0cd370ddbe16d36bc036cf7c3f1bd7b 100644 |
--- a/content/renderer/media/midi_message_filter.h |
+++ b/content/renderer/media/midi_message_filter.h |
@@ -31,8 +31,8 @@ class CONTENT_EXPORT MIDIMessageFilter |
// If permission is granted, then the client's |
// addInputPort() and addOutputPort() methods will be called, |
// giving the client access to receive and send data. |
- void StartSession(WebKit::WebMIDIAccessorClient* client); |
- void RemoveClient(WebKit::WebMIDIAccessorClient* client); |
+ void StartSession(blink::WebMIDIAccessorClient* client); |
+ void RemoveClient(blink::WebMIDIAccessorClient* client); |
// A client will only be able to call this method if it has a suitable |
// output port (from addOutputPort()). |
@@ -92,7 +92,7 @@ class CONTENT_EXPORT MIDIMessageFilter |
const std::vector<uint8>& data, |
double timestamp); |
- WebKit::WebMIDIAccessorClient* GetClientFromId(int client_id); |
+ blink::WebMIDIAccessorClient* GetClientFromId(int client_id); |
// IPC channel for Send(); must only be accessed on |io_message_loop_|. |
IPC::Channel* channel_; |
@@ -107,7 +107,7 @@ class CONTENT_EXPORT MIDIMessageFilter |
// We map client to "client id" used to track permission. |
// When access has been approved, we add the input and output ports to |
// the client, allowing it to actually receive and send MIDI data. |
- typedef std::map<WebKit::WebMIDIAccessorClient*, int> ClientsMap; |
+ typedef std::map<blink::WebMIDIAccessorClient*, int> ClientsMap; |
ClientsMap clients_; |
// Dishes out client ids. |