Index: Source/modules/webmidi/MIDIOptions.h |
diff --git a/Source/modules/webmidi/MIDIOptions.h b/Source/modules/webmidi/MIDIOptions.h |
index 3ce1119ce3b2bcfed22ba0570acb1ac5afb56c4c..1e1c8d2e6d530319cfe32f5288b25f1d9ef81fc2 100644 |
--- a/Source/modules/webmidi/MIDIOptions.h |
+++ b/Source/modules/webmidi/MIDIOptions.h |
@@ -32,6 +32,7 @@ |
#define MIDIOptions_h |
#include "bindings/core/v8/Dictionary.h" |
+#include "bindings/core/v8/DictionaryHelper.h" |
namespace WebCore { |
@@ -39,7 +40,7 @@ struct MIDIOptions { |
explicit MIDIOptions(const Dictionary& options) |
: sysex(false) |
{ |
- options.get("sysex", sysex); |
+ DictionaryHelper::get(options, "sysex", sysex); |
} |
bool sysex; |