| OLD | NEW |
| 1 | 1 |
| 2 // Copyright 2014 The Chromium Authors. All rights reserved. | 2 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 5 | 5 |
| 6 #ifndef MEDIA_MIDI_USB_MIDI_DESCRIPTOR_PARSER_H_ | 6 #ifndef MEDIA_MIDI_USB_MIDI_DESCRIPTOR_PARSER_H_ |
| 7 #define MEDIA_MIDI_USB_MIDI_DESCRIPTOR_PARSER_H_ | 7 #define MEDIA_MIDI_USB_MIDI_DESCRIPTOR_PARSER_H_ |
| 8 | 8 |
| 9 #include <stddef.h> |
| 9 #include <stdint.h> | 10 #include <stdint.h> |
| 10 | 11 |
| 11 #include <string> | 12 #include <string> |
| 12 #include <vector> | 13 #include <vector> |
| 13 | 14 |
| 14 #include "base/macros.h" | 15 #include "base/macros.h" |
| 15 #include "media/midi/usb_midi_export.h" | 16 #include "media/midi/usb_midi_export.h" |
| 16 #include "media/midi/usb_midi_jack.h" | 17 #include "media/midi/usb_midi_jack.h" |
| 17 | 18 |
| 18 namespace media { | 19 namespace media { |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 80 |
| 80 std::vector<UsbMidiJack> incomplete_jacks_; | 81 std::vector<UsbMidiJack> incomplete_jacks_; |
| 81 | 82 |
| 82 DISALLOW_COPY_AND_ASSIGN(UsbMidiDescriptorParser); | 83 DISALLOW_COPY_AND_ASSIGN(UsbMidiDescriptorParser); |
| 83 }; | 84 }; |
| 84 | 85 |
| 85 } // namespace midi | 86 } // namespace midi |
| 86 } // namespace media | 87 } // namespace media |
| 87 | 88 |
| 88 #endif // MEDIA_MIDI_USB_MIDI_DESCRIPTOR_PARSER_H_ | 89 #endif // MEDIA_MIDI_USB_MIDI_DESCRIPTOR_PARSER_H_ |
| OLD | NEW |