Index: Source/bindings/modules/v8/DictionaryHelperForModules.cpp |
diff --git a/Source/bindings/modules/v8/DictionaryHelperForModules.cpp b/Source/bindings/modules/v8/DictionaryHelperForModules.cpp |
index 90544a1fd54149dfdb73e8feb471b7c222640009..91101e14d61f62505122bd41d058650a8d681557 100644 |
--- a/Source/bindings/modules/v8/DictionaryHelperForModules.cpp |
+++ b/Source/bindings/modules/v8/DictionaryHelperForModules.cpp |
@@ -29,6 +29,7 @@ |
#include "bindings/core/v8/ExceptionMessages.h" |
#include "bindings/core/v8/ExceptionState.h" |
#include "bindings/core/v8/V8Binding.h" |
+#include "bindings/modules/v8/UnionTypesModules.h" |
#include "bindings/modules/v8/V8Gamepad.h" |
#include "bindings/modules/v8/V8Headers.h" |
#include "bindings/modules/v8/V8MIDIPort.h" |
@@ -52,6 +53,7 @@ template bool DictionaryHelper::get(const Dictionary&, const String& key, Member |
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Headers>& value); |
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<PushMessageData>& value); |
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Storage>& value); |
+template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<ServiceWorkerOrMessagePort>& value); |
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<MIDIPort>& value); |
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<SpeechRecognitionResultList>& value); |
@@ -60,5 +62,6 @@ template bool DictionaryHelper::convert(const Dictionary&, Dictionary::Conversio |
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<Headers>& value); |
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<PushMessageData>& value); |
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<Storage>& value); |
+template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<ServiceWorkerOrMessagePort>& value); |
} // namespace blink |