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

Unified Diff: Source/bindings/tests/results/V8TestInterfaceEventConstructor.h

Issue 534133002: [WIP] bindings: Introduce PropertyBag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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/tests/results/V8TestInterfaceEventConstructor.h
diff --git a/Source/bindings/tests/results/V8TestInterfaceEventConstructor.h b/Source/bindings/tests/results/V8TestInterfaceEventConstructor.h
index 3f71ef0b8f6a189cb83272a61fb328d653107fe9..d918f9d2a51e0691019cfc8d534b8b9677507461 100644
--- a/Source/bindings/tests/results/V8TestInterfaceEventConstructor.h
+++ b/Source/bindings/tests/results/V8TestInterfaceEventConstructor.h
@@ -7,6 +7,7 @@
#ifndef V8TestInterfaceEventConstructor_h
#define V8TestInterfaceEventConstructor_h
+#include "bindings/core/v8/PropertyBagTraits.h"
#include "bindings/core/v8/ScriptWrappable.h"
#include "bindings/core/v8/V8Binding.h"
#include "bindings/core/v8/V8DOMWrapper.h"
@@ -17,7 +18,7 @@
namespace blink {
-class Dictionary;
+class PropertyBag;
class V8TestInterfaceEventConstructor {
public:
static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
@@ -133,7 +134,12 @@ inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtrWil
v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
}
-bool initializeTestInterfaceEventConstructor(TestInterfaceEventConstructorInit&, const Dictionary&, ExceptionState&, const v8::FunctionCallbackInfo<v8::Value>& info, const String& = "");
+bool initializeTestInterfaceEventConstructor(TestInterfaceEventConstructorInit&, const PropertyBag&, ExceptionState&, const v8::FunctionCallbackInfo<v8::Value>& info, const String& = "");
+
+template <>
+struct PropertyBagTraits<TestInterfaceEventConstructor> {
+ typedef V8TestInterfaceEventConstructor type;
+};
} // namespace blink
#endif // V8TestInterfaceEventConstructor_h

Powered by Google App Engine
This is Rietveld 408576698