Chromium Code Reviews

Unified Diff: webrtc/api/notifier.h

Issue 2715103002: Replace NULL with nullptr or null in webrtc/api/. (Closed)
Patch Set: merge with master Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « webrtc/api/mediastreaminterface.h ('k') | webrtc/api/peerconnectioninterface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/notifier.h
diff --git a/webrtc/api/notifier.h b/webrtc/api/notifier.h
index 878d01c8ce8d3fdf2787ea5f8d93b581970edfc4..d88305155d30851b8528f6ae70a6d45d544397bc 100644
--- a/webrtc/api/notifier.h
+++ b/webrtc/api/notifier.h
@@ -27,7 +27,7 @@ class Notifier : public T {
}
virtual void RegisterObserver(ObserverInterface* observer) {
- RTC_DCHECK(observer != NULL);
+ RTC_DCHECK(observer != nullptr);
observers_.push_back(observer);
}
« no previous file with comments | « webrtc/api/mediastreaminterface.h ('k') | webrtc/api/peerconnectioninterface.h » ('j') | no next file with comments »

Powered by Google App Engine