| 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..8332eb8d4195932780003e2c6f16ca5752435b0d 100644
|
| --- a/Source/bindings/modules/v8/DictionaryHelperForModules.cpp
|
| +++ b/Source/bindings/modules/v8/DictionaryHelperForModules.cpp
|
| @@ -26,39 +26,10 @@
|
| #include "config.h"
|
|
|
| #include "bindings/core/v8/DictionaryHelperForBindings.h"
|
| -#include "bindings/core/v8/ExceptionMessages.h"
|
| -#include "bindings/core/v8/ExceptionState.h"
|
| -#include "bindings/core/v8/V8Binding.h"
|
| -#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/V8PushMessageData.h"
|
| -#include "bindings/modules/v8/V8SpeechRecognitionResult.h"
|
| -#include "bindings/modules/v8/V8SpeechRecognitionResultList.h"
|
| -#include "bindings/modules/v8/V8Storage.h"
|
| -#include "modules/gamepad/Gamepad.h"
|
| -#include "modules/mediastream/MediaStream.h"
|
| -#include "modules/push_messaging/PushMessageData.h"
|
| -#include "modules/speech/SpeechRecognitionResult.h"
|
| -#include "modules/speech/SpeechRecognitionResultList.h"
|
|
|
| namespace blink {
|
|
|
| -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::get(const Dictionary&, const String& key, Member<PushMessageData>& value);
|
| -template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Storage>& 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);
|
| -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);
|
|
|
| } // namespace blink
|
|
|