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

Unified Diff: mojo/public/cpp/bindings/associated_interface_ptr_info.h

Issue 2370643004: Port messages sent by WebIDBFactoryImpl to Mojo. (Closed)
Patch Set: Require explicit wrapping when discarding map keys. Created 4 years, 2 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/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_) {

Powered by Google App Engine
This is Rietveld 408576698