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

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

Issue 2471393004: bindings: Use forward declarations for wrapper types in dictionary_impl (Closed)
Patch Set: WIP Created 4 years, 1 month 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/TestInterfaceEventInit.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceEventInit.h b/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceEventInit.h
index 73eb7f349588fe58b950f78691beaead87278471..466929699c250cbb161a9ae1f2a1dad5a55648f9 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceEventInit.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceEventInit.h
@@ -22,9 +22,9 @@ class CORE_EXPORT TestInterfaceEventInit : public EventInit {
TestInterfaceEventInit();
virtual ~TestInterfaceEventInit();
- bool hasStringMember() const { return !m_stringMember.isNull(); }
- String stringMember() const { return m_stringMember; }
- void setStringMember(String value) { m_stringMember = value; }
+ bool hasStringMember() const;
+ String stringMember() const;
+ void setStringMember(String);
v8::Local<v8::Value> toV8Impl(v8::Local<v8::Object>, v8::Isolate*) const override;
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698