OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // Defines all the "midi" command-line switches. | 5 // Defines all the "midi" command-line switches. |
6 | 6 |
7 #ifndef MEDIA_MIDI_MIDI_SWITCHES_H_ | 7 #ifndef MEDIA_MIDI_MIDI_SWITCHES_H_ |
8 #define MEDIA_MIDI_MIDI_SWITCHES_H_ | 8 #define MEDIA_MIDI_MIDI_SWITCHES_H_ |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
11 #include "media/midi/midi_export.h" | 11 #include "media/midi/midi_export.h" |
12 | 12 |
13 namespace switches { | 13 namespace switches { |
14 | 14 |
15 #if defined(OS_ANDROID) | 15 #if defined(OS_ANDROID) |
16 MIDI_EXPORT extern const char kUseAndroidMidiApi[]; | 16 MIDI_EXPORT extern const char kUseAndroidMidiApi[]; |
17 #endif | 17 #endif |
18 | 18 |
| 19 #if defined(OS_WIN) |
| 20 MIDI_EXPORT extern const char kUseWinrtMidiApi[]; |
| 21 #endif |
| 22 |
19 } // namespace switches | 23 } // namespace switches |
20 | 24 |
21 #endif // MEDIA_MIDI_MIDI_SWITCHES_H_ | 25 #endif // MEDIA_MIDI_MIDI_SWITCHES_H_ |
OLD | NEW |