midi_switches.h 602 B

123456789101112131415161718192021222324
  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
  3. // found in the LICENSE file.
  4. // Defines all the "midi" command-line switches.
  5. #ifndef MEDIA_MIDI_MIDI_SWITCHES_H_
  6. #define MEDIA_MIDI_MIDI_SWITCHES_H_
  7. #include "base/feature_list.h"
  8. #include "build/build_config.h"
  9. #include "media/midi/midi_export.h"
  10. namespace midi {
  11. namespace features {
  12. #if BUILDFLAG(IS_WIN)
  13. MIDI_EXPORT extern const base::Feature kMidiManagerWinrt;
  14. #endif
  15. } // namespace features
  16. } // namespace midi
  17. #endif // MEDIA_MIDI_MIDI_SWITCHES_H_