Index: mojo/public/cpp/bindings/lib/filter_chain.cc |
diff --git a/mojo/public/cpp/bindings/lib/filter_chain.cc b/mojo/public/cpp/bindings/lib/filter_chain.cc |
index d14169294f58ad575a53943db38bf0232d648cbb..663456218498082e6f85047ce6f9b4904574c11d 100644 |
--- a/mojo/public/cpp/bindings/lib/filter_chain.cc |
+++ b/mojo/public/cpp/bindings/lib/filter_chain.cc |
@@ -15,7 +15,7 @@ FilterChain::FilterChain(MessageReceiver* sink) : sink_(sink) { |
} |
FilterChain::FilterChain(RValue other) : sink_(other.object->sink_) { |
- other.object->sink_ = NULL; |
+ other.object->sink_ = nullptr; |
filters_.swap(other.object->filters_); |
} |