Chromium Code Reviews| Index: mojo/public/cpp/bindings/associated_interface_ptr_info.h | 
| diff --git a/mojo/public/cpp/bindings/associated_interface_ptr_info.h b/mojo/public/cpp/bindings/associated_interface_ptr_info.h | 
| index bfb3297a0f859a4579bb9e9555fbf8c5e72e0698..d06b358be75badae32f7b71d932449a7b4937098 100644 | 
| --- a/mojo/public/cpp/bindings/associated_interface_ptr_info.h | 
| +++ b/mojo/public/cpp/bindings/associated_interface_ptr_info.h | 
| @@ -20,6 +20,7 @@ template <typename Interface> | 
| class AssociatedInterfacePtrInfo { | 
| public: | 
| AssociatedInterfacePtrInfo() : version_(0u) {} | 
| + AssociatedInterfacePtrInfo(decltype(nullptr)) : version_(0u) {} | 
| 
 
dcheng
2016/10/17 05:33:44
Nit: nullptr_t
 
Reilly Grant (use Gerrit)
2016/10/19 00:36:51
Done.
 
 | 
| AssociatedInterfacePtrInfo(AssociatedInterfacePtrInfo&& other) | 
| : handle_(std::move(other.handle_)), version_(other.version_) { |