Replace NULL with nullptr or null in webrtc/base/.

BUG=webrtc:7147

Review-Url: https://codereview.webrtc.org/2718663005
Cr-Commit-Position: refs/heads/master@{#16878}
diff --git a/webrtc/base/asyncinvoker.cc b/webrtc/base/asyncinvoker.cc
index aa65499..a143e25 100644
--- a/webrtc/base/asyncinvoker.cc
+++ b/webrtc/base/asyncinvoker.cc
@@ -147,8 +147,8 @@
   // destructor of the dying object here by waiting until the callback
   // is done triggering.
   CritScope cs(&crit_);
-  // calling_thread_ == NULL means do not trigger the callback.
-  calling_thread_ = NULL;
+  // calling_thread_ == nullptr means do not trigger the callback.
+  calling_thread_ = nullptr;
 }
 
 }  // namespace rtc