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

Unified Diff: Source/modules/webmidi/MIDIOptions.h

Issue 18350002: Web MIDI: rename sysexEnabled to sysex (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/webmidi/MIDIOptions.h
diff --git a/Source/modules/webmidi/MIDIOptions.h b/Source/modules/webmidi/MIDIOptions.h
index ab2b07fedd39d872b0d9f10678b2510de9084b90..6470702d8786894151ce53ce46ddd1b7406dfaa6 100644
--- a/Source/modules/webmidi/MIDIOptions.h
+++ b/Source/modules/webmidi/MIDIOptions.h
@@ -37,12 +37,12 @@ namespace WebCore {
struct MIDIOptions {
explicit MIDIOptions(const Dictionary& options)
- : sysexEnabled(false)
+ : sysex(false)
{
- options.get("sysexEnabled", sysexEnabled);
+ options.get("sysex", sysex);
}
- bool sysexEnabled;
+ bool sysex;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698