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

Unified Diff: media/midi/midi_manager_alsa.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 | « media/midi/midi_manager.cc ('k') | media/midi/midi_manager_alsa.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/midi/midi_manager_alsa.h
diff --git a/media/midi/midi_manager_alsa.h b/media/midi/midi_manager_alsa.h
index d70141ceccb290e1fce510b02e082e38f430df30..d14107a6b5e5204c49a91215297be558a6862bfc 100644
--- a/media/midi/midi_manager_alsa.h
+++ b/media/midi/midi_manager_alsa.h
@@ -14,24 +14,24 @@
namespace media {
-class MIDIManagerAlsa : public MIDIManager {
+class MidiManagerAlsa : public MidiManager {
public:
- MIDIManagerAlsa();
- virtual ~MIDIManagerAlsa();
+ MidiManagerAlsa();
+ virtual ~MidiManagerAlsa();
- // MIDIManager implementation.
+ // MidiManager implementation.
virtual bool Initialize() OVERRIDE;
- virtual void DispatchSendMIDIData(MIDIManagerClient* client,
+ virtual void DispatchSendMidiData(MidiManagerClient* client,
uint32 port_index,
const std::vector<uint8>& data,
double timestamp) OVERRIDE;
private:
- class MIDIDeviceInfo;
- std::vector<scoped_refptr<MIDIDeviceInfo> > in_devices_;
- std::vector<scoped_refptr<MIDIDeviceInfo> > out_devices_;
+ class MidiDeviceInfo;
+ std::vector<scoped_refptr<MidiDeviceInfo> > in_devices_;
+ std::vector<scoped_refptr<MidiDeviceInfo> > out_devices_;
base::Thread send_thread_;
- DISALLOW_COPY_AND_ASSIGN(MIDIManagerAlsa);
+ DISALLOW_COPY_AND_ASSIGN(MidiManagerAlsa);
};
} // namespace media
« no previous file with comments | « media/midi/midi_manager.cc ('k') | media/midi/midi_manager_alsa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698