| 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 "base/feature_list.h" | 10 #include "base/feature_list.h" |
| 11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| 12 #include "media/midi/midi_export.h" | 12 #include "media/midi/midi_export.h" |
| 13 | 13 |
| 14 namespace switches { | 14 namespace switches { |
| 15 | 15 |
| 16 #if defined(OS_ANDROID) | 16 #if defined(OS_ANDROID) |
| 17 MIDI_EXPORT extern const char kUseAndroidMidiApi[]; | 17 MIDI_EXPORT extern const char kUseAndroidMidiApi[]; |
| 18 #endif | 18 #endif |
| 19 | 19 |
| 20 #if defined(OS_WIN) | |
| 21 MIDI_EXPORT extern const char kDisableWinrtMidiApi[]; | |
| 22 #endif | |
| 23 | |
| 24 } // namespace switches | 20 } // namespace switches |
| 25 | 21 |
| 22 namespace midi { |
| 23 namespace features { |
| 24 |
| 25 #if defined(OS_WIN) |
| 26 MIDI_EXPORT extern const base::Feature kMidiManagerWinrt; |
| 27 #endif |
| 28 |
| 29 } // namespace features |
| 30 } // namespace midi |
| 31 |
| 26 #endif // MEDIA_MIDI_MIDI_SWITCHES_H_ | 32 #endif // MEDIA_MIDI_MIDI_SWITCHES_H_ |
| OLD | NEW |