Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: media/midi/midi_switches.h

Issue 2352013002: MidiManagerWinrt as base::FeatureList feature (Closed)
Patch Set: fix histograms.xml Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/midi/midi_manager_win.cc ('k') | media/midi/midi_switches.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "build/build_config.h" 11 #include "build/build_config.h"
11 #include "media/midi/midi_export.h" 12 #include "media/midi/midi_export.h"
12 13
13 namespace switches { 14 namespace switches {
14 15
15 #if defined(OS_ANDROID) 16 #if defined(OS_ANDROID)
16 MIDI_EXPORT extern const char kUseAndroidMidiApi[]; 17 MIDI_EXPORT extern const char kUseAndroidMidiApi[];
17 #endif 18 #endif
18 19
19 #if defined(OS_WIN)
20 MIDI_EXPORT extern const char kUseWinrtMidiApi[];
21 #endif
22
23 } // namespace switches 20 } // namespace switches
24 21
22 namespace media {
23 namespace midi {
24 namespace features {
25
26 #if defined(OS_WIN)
27 MIDI_EXPORT extern const base::Feature kMidiManagerWinrt;
28 #endif
29
30 } // namespace features
31 } // namespace midi
32 } // namespace media
33
25 #endif // MEDIA_MIDI_MIDI_SWITCHES_H_ 34 #endif // MEDIA_MIDI_MIDI_SWITCHES_H_
OLDNEW
« no previous file with comments | « media/midi/midi_manager_win.cc ('k') | media/midi/midi_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698