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

Unified Diff: content/renderer/media/midi_dispatcher.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
« no previous file with comments | « content/public/test/test_browser_context.cc ('k') | content/renderer/media/midi_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/midi_dispatcher.h
diff --git a/content/renderer/media/midi_dispatcher.h b/content/renderer/media/midi_dispatcher.h
index 70f8125bdd236ac227d94cdb377fbd3c61e17872..8c875aafaf36e3f447420031f3265cc0ae1dd09e 100644
--- a/content/renderer/media/midi_dispatcher.h
+++ b/content/renderer/media/midi_dispatcher.h
@@ -17,16 +17,16 @@ namespace content {
class RenderViewImpl;
-// MIDIDispatcher implements WebMIDIClient to handle permissions for using
+// MidiDispatcher implements WebMIDIClient to handle permissions for using
// system exclusive messages.
// It works as RenderViewObserver to handle IPC messages between
-// MIDIDispatcherHost owned by RenderViewHost since permissions are managed in
+// MidiDispatcherHost owned by RenderViewHost since permissions are managed in
// the browser process.
-class MIDIDispatcher : public RenderViewObserver,
+class MidiDispatcher : public RenderViewObserver,
public blink::WebMIDIClient {
public:
- explicit MIDIDispatcher(RenderViewImpl* render_view);
- virtual ~MIDIDispatcher();
+ explicit MidiDispatcher(RenderViewImpl* render_view);
+ virtual ~MidiDispatcher();
private:
// RenderView::Observer implementation.
@@ -46,7 +46,7 @@ class MIDIDispatcher : public RenderViewObserver,
// WebMIDIPermissionRequest::setIsAllowed().
IDMap<blink::WebMIDIPermissionRequest> requests_;
- DISALLOW_COPY_AND_ASSIGN(MIDIDispatcher);
+ DISALLOW_COPY_AND_ASSIGN(MidiDispatcher);
};
} // namespace content
« no previous file with comments | « content/public/test/test_browser_context.cc ('k') | content/renderer/media/midi_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698