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

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: Added copy operator 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 75f484d27a030c3a8874dbd544eec4aa3f3d94de..296a4e051c229317e7a2287ae0315ea477a62423 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.h
@@ -20,6 +20,8 @@ class CORE_EXPORT TestPermissiveDictionary : public IDLDictionaryBase {
public:
TestPermissiveDictionary();
virtual ~TestPermissiveDictionary();
+ TestPermissiveDictionary(const TestPermissiveDictionary&);
+ TestPermissiveDictionary& operator=(const TestPermissiveDictionary&);
bool hasBooleanMember() const;
bool booleanMember() const;

Powered by Google App Engine
This is Rietveld 408576698