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

Unified Diff: content/browser/renderer_host/media/midi_dispatcher_host.h

Issue 151343002: Web MIDI: make naming convention be consistent (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review boliu #2 Created 6 years, 11 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
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

Powered by Google App Engine
This is Rietveld 408576698