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

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

Issue 1139873002: [PROTOTYPE] ServiceWorker: Add ServiceWorkerMessageEvent impl. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
« no previous file with comments | « no previous file | Source/bindings/modules/v8/custom/V8ServiceWorkerMessageEventCustom.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | Source/bindings/modules/v8/custom/V8ServiceWorkerMessageEventCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698