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

Unified Diff: mojo/public/cpp/bindings/tests/pickled_struct_blink.cc

Issue 2012693002: Generate a templated Clone method for all mojo structs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: mojo/public/cpp/bindings/tests/pickled_struct_blink.cc
diff --git a/mojo/public/cpp/bindings/tests/pickled_struct_blink.cc b/mojo/public/cpp/bindings/tests/pickled_struct_blink.cc
index 57a191516ddd0e01889f0510779f39507b444c0e..ee172d5b44126bb2ee4f8ab4dd92742998c77027 100644
--- a/mojo/public/cpp/bindings/tests/pickled_struct_blink.cc
+++ b/mojo/public/cpp/bindings/tests/pickled_struct_blink.cc
@@ -18,6 +18,8 @@ PickledStructBlink::PickledStructBlink(int foo, int bar)
DCHECK_GE(bar_, 0);
}
+PickledStructBlink::PickledStructBlink(PickledStructBlink&& other) = default;
+
PickledStructBlink::~PickledStructBlink() {}
} // namespace test

Powered by Google App Engine
This is Rietveld 408576698