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

Unified Diff: Source/bindings/modules/v8/DictionaryHelperForModules.cpp

Issue 1154943009: bindings: Remove [EventConstructor] and [InitializedByEventConstructor] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/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

Powered by Google App Engine
This is Rietveld 408576698