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

Side by Side Diff: media/midi/usb_midi_descriptor_parser.h

Issue 1542013004: Switch to standard integer types in media/, take 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more stddef Created 5 years 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 unified diff | Download patch
« no previous file with comments | « media/midi/midi_switches.cc ('k') | media/midi/usb_midi_descriptor_parser_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « media/midi/midi_switches.cc ('k') | media/midi/usb_midi_descriptor_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698