Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 | |
| 5 #ifndef MEDIA_MIDI_MIDI_FEATURES_H_ | |
| 6 #define MEDIA_MIDI_MIDI_FEATURES_H_ | |
| 7 | |
| 8 #include "base/feature_list.h" | |
| 9 #include "media/midi/midi_export.h" | |
| 10 | |
| 11 namespace features { | |
| 12 | |
| 13 #if defined(OS_WIN) | |
| 14 MIDI_EXPORT extern const base::Feature kUseWinrtMidiApi; | |
|
Takashi Toyoshima
2016/09/20 09:12:04
We do not use 'Use' or 'Enable' like prefix for th
Shao-Chuan Lee
2016/09/20 09:57:27
Now using kMidiManagerWinrt to stick with the clas
| |
| 15 #endif | |
| 16 | |
| 17 } // namespace features | |
| 18 | |
| 19 #endif // MEDIA_MIDI_MIDI_FEATURES_H_ | |
|
Takashi Toyoshima
2016/09/20 09:12:04
Can we reuse midi_switches as media_switches does.
Shao-Chuan Lee
2016/09/20 09:57:27
As discussed offline, now moved to midi_switches u
| |
| OLD | NEW |