Index: content/browser/renderer_host/media/midi_dispatcher_host.h |
diff --git a/content/browser/renderer_host/media/midi_dispatcher_host.h b/content/browser/renderer_host/media/midi_dispatcher_host.h |
index 068f71918f5ecfe5a1582ce0ae5d1db721ca2201..8bc1bb0dd71c125dd82d6c8b8864fa9b2f186d1f 100644 |
--- a/content/browser/renderer_host/media/midi_dispatcher_host.h |
+++ b/content/browser/renderer_host/media/midi_dispatcher_host.h |
@@ -13,12 +13,12 @@ namespace content { |
class BrowserContext; |
-// MIDIDispatcherHost handles permissions for using system exclusive messages. |
+// MidiDispatcherHost handles permissions for using system exclusive messages. |
// It works as BrowserMessageFilter to handle IPC messages between |
-// MIDIDispatcher running as a RenderViewObserver. |
-class MIDIDispatcherHost : public BrowserMessageFilter { |
+// MidiDispatcher running as a RenderViewObserver. |
+class MidiDispatcherHost : public BrowserMessageFilter { |
public: |
- MIDIDispatcherHost(int render_process_id, BrowserContext* browser_context); |
+ MidiDispatcherHost(int render_process_id, BrowserContext* browser_context); |
// BrowserMessageFilter implementation. |
virtual bool OnMessageReceived(const IPC::Message& message, |
@@ -27,7 +27,7 @@ class MIDIDispatcherHost : public BrowserMessageFilter { |
const IPC::Message& message, BrowserThread::ID* thread) OVERRIDE; |
protected: |
- virtual ~MIDIDispatcherHost(); |
+ virtual ~MidiDispatcherHost(); |
private: |
void OnRequestSysExPermission(int render_view_id, |
@@ -43,7 +43,7 @@ class MIDIDispatcherHost : public BrowserMessageFilter { |
int render_process_id_; |
BrowserContext* browser_context_; |
- DISALLOW_COPY_AND_ASSIGN(MIDIDispatcherHost); |
+ DISALLOW_COPY_AND_ASSIGN(MidiDispatcherHost); |
}; |
} // namespace content |