Index: Source/bindings/modules/v8/DictionaryHelperForModules.cpp |
diff --git a/Source/bindings/modules/v8/DictionaryHelperForModules.cpp b/Source/bindings/modules/v8/DictionaryHelperForModules.cpp |
index b0ca42bae22eb6b8ff042e0e77c79907f1f67f9c..38287685dc3bcf003a20bae714d72f2a46585804 100644 |
--- a/Source/bindings/modules/v8/DictionaryHelperForModules.cpp |
+++ b/Source/bindings/modules/v8/DictionaryHelperForModules.cpp |
@@ -32,11 +32,9 @@ |
#include "bindings/modules/v8/V8Gamepad.h" |
#include "bindings/modules/v8/V8Headers.h" |
#include "bindings/modules/v8/V8MIDIPort.h" |
-#include "bindings/modules/v8/V8MediaStream.h" |
#include "bindings/modules/v8/V8SpeechRecognitionResult.h" |
#include "bindings/modules/v8/V8SpeechRecognitionResultList.h" |
#include "modules/gamepad/Gamepad.h" |
-#include "modules/mediastream/MediaStream.h" |
#include "modules/speech/SpeechRecognitionResult.h" |
#include "modules/speech/SpeechRecognitionResultList.h" |
@@ -58,11 +56,6 @@ struct DictionaryHelperTraits<Gamepad> { |
}; |
template <> |
-struct DictionaryHelperTraits<MediaStream> { |
- typedef V8MediaStream type; |
-}; |
- |
-template <> |
struct DictionaryHelperTraits<Headers> { |
typedef V8Headers type; |
}; |
@@ -70,13 +63,11 @@ struct DictionaryHelperTraits<Headers> { |
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<MIDIPort>& value); |
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<SpeechRecognitionResultList>& value); |
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Gamepad>& value); |
-template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<MediaStream>& value); |
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Headers>& 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); |
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<Gamepad>& value); |
-template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<MediaStream>& value); |
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<Headers>& value); |
} // namespace blink |