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/TestPermissiveDictionary.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/TestPermissiveDictionary.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.h b/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.h
index cc9d80ffd3f8e565ce063308d7fa4008a3654584..845511ae46cc8b310db1466b7ec6312c49bf83dc 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.h
@@ -22,9 +22,9 @@ class CORE_EXPORT TestPermissiveDictionary : public IDLDictionaryBase {
TestPermissiveDictionary();
virtual ~TestPermissiveDictionary();
- bool hasBooleanMember() const { return !m_booleanMember.isNull(); }
- bool booleanMember() const { return m_booleanMember.get(); }
- void setBooleanMember(bool value) { m_booleanMember = value; }
+ bool hasBooleanMember() const;
+ bool booleanMember() const;
+ void setBooleanMember(bool);
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