Index: mojo/public/cpp/bindings/tests/struct_with_traits_impl.h |
diff --git a/mojo/public/cpp/bindings/tests/struct_with_traits_impl.h b/mojo/public/cpp/bindings/tests/struct_with_traits_impl.h |
index abcb23e8210ce7c1ed3bdf0faa498978c1ec46ae..a9ad28de7304480c23b38601ce690e3f67a9cdbd 100644 |
--- a/mojo/public/cpp/bindings/tests/struct_with_traits_impl.h |
+++ b/mojo/public/cpp/bindings/tests/struct_with_traits_impl.h |
@@ -36,6 +36,8 @@ class StructWithTraitsImpl { |
StructWithTraitsImpl(); |
~StructWithTraitsImpl(); |
+ StructWithTraitsImpl(const StructWithTraitsImpl& other); |
+ |
void set_bool(bool value) { bool_ = value; } |
bool get_bool() const { return bool_; } |
@@ -95,6 +97,7 @@ class PassByValueStructWithTraitsImpl { |
private: |
ScopedHandle handle_; |
+ DISALLOW_COPY_AND_ASSIGN(PassByValueStructWithTraitsImpl); |
}; |
} // namespace test |