| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_MIDI_MIDI_MANAGER_H_ | 5 #ifndef MEDIA_MIDI_MIDI_MANAGER_H_ |
| 6 #define MEDIA_MIDI_MIDI_MANAGER_H_ | 6 #define MEDIA_MIDI_MIDI_MANAGER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/synchronization/lock.h" | 13 #include "base/synchronization/lock.h" |
| 13 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 14 #include "media/midi/midi_export.h" | 15 #include "media/midi/midi_export.h" |
| 15 #include "media/midi/midi_port_info.h" | 16 #include "media/midi/midi_port_info.h" |
| 16 #include "media/midi/result.h" | 17 #include "media/midi/result.h" |
| 17 | 18 |
| 18 namespace base { | 19 namespace base { |
| 19 class SingleThreadTaskRunner; | 20 class SingleThreadTaskRunner; |
| 20 } // namespace base | 21 } // namespace base |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 // |input_ports_| and |output_ports_|. | 203 // |input_ports_| and |output_ports_|. |
| 203 base::Lock lock_; | 204 base::Lock lock_; |
| 204 | 205 |
| 205 DISALLOW_COPY_AND_ASSIGN(MidiManager); | 206 DISALLOW_COPY_AND_ASSIGN(MidiManager); |
| 206 }; | 207 }; |
| 207 | 208 |
| 208 } // namespace midi | 209 } // namespace midi |
| 209 } // namespace media | 210 } // namespace media |
| 210 | 211 |
| 211 #endif // MEDIA_MIDI_MIDI_MANAGER_H_ | 212 #endif // MEDIA_MIDI_MIDI_MANAGER_H_ |
| OLD | NEW |