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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/StringOrStringSequence.h

Issue 2730183003: bindings: Add C++ versions of WebIDL types and generalize NativeValueTraits. (Closed)
Patch Set: Move specialization for SerializedScriptValue to the appropriate header Created 3 years, 9 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: third_party/WebKit/Source/bindings/tests/results/core/StringOrStringSequence.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/StringOrStringSequence.h b/third_party/WebKit/Source/bindings/tests/results/core/StringOrStringSequence.h
index 4d64e68e5d3ec1203a156f431ace023607f4de4d..9ee0ccb90f12a6b4badf743fe1e3a66ef454cea8 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/StringOrStringSequence.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/StringOrStringSequence.h
@@ -14,6 +14,7 @@
#include "bindings/core/v8/Dictionary.h"
#include "bindings/core/v8/ExceptionState.h"
+#include "bindings/core/v8/NativeValueTraits.h"
#include "bindings/core/v8/V8Binding.h"
#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
@@ -73,10 +74,15 @@ inline void v8SetReturnValue(const CallbackInfo& callbackInfo, StringOrStringSeq
}
template <>
-struct NativeValueTraits<StringOrStringSequence> {
+struct NativeValueTraits<StringOrStringSequence> : public NativeValueTraitsBase<StringOrStringSequence> {
CORE_EXPORT static StringOrStringSequence nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
};
+template <>
+struct V8TypeOf<StringOrStringSequence> {
+ typedef V8StringOrStringSequence Type;
+};
+
} // namespace blink
// We need to set canInitializeWithMemset=true because HeapVector supports

Powered by Google App Engine
This is Rietveld 408576698