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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp

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.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp
index 3dc392a321d6c5005bc0186b601f219ce8a1bc9c..2fd3431ab914c406009729d32a6df150530d5b7f 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp
@@ -15,6 +15,10 @@ TestPermissiveDictionary::TestPermissiveDictionary() {
TestPermissiveDictionary::~TestPermissiveDictionary() {}
+TestPermissiveDictionary::TestPermissiveDictionary(const TestPermissiveDictionary&) = default;
+
+TestPermissiveDictionary& TestPermissiveDictionary::operator=(const TestPermissiveDictionary&) = default;
+
bool TestPermissiveDictionary::hasBooleanMember() const {
return m_hasBooleanMember;
}

Powered by Google App Engine
This is Rietveld 408576698