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

Unified Diff: webrtc/modules/desktop_capture/shared_memory.cc

Issue 2685783014: Replace NULL with nullptr in all C++ files. (Closed)
Patch Set: Fixing android. Created 3 years, 10 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: webrtc/modules/desktop_capture/shared_memory.cc
diff --git a/webrtc/modules/desktop_capture/shared_memory.cc b/webrtc/modules/desktop_capture/shared_memory.cc
index 872116eec9f86d76bf9cdab2429d74a798f089b0..e453c660d6f65dc76de049786c48311365efbbc3 100644
--- a/webrtc/modules/desktop_capture/shared_memory.cc
+++ b/webrtc/modules/desktop_capture/shared_memory.cc
@@ -13,7 +13,7 @@
namespace webrtc {
#if defined(WEBRTC_WIN)
-const SharedMemory::Handle SharedMemory::kInvalidHandle = NULL;
+const SharedMemory::Handle SharedMemory::kInvalidHandle = nullptr;
#else
const SharedMemory::Handle SharedMemory::kInvalidHandle = -1;
#endif

Powered by Google App Engine
This is Rietveld 408576698