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

Unified Diff: content/common/gpu/client/gpu_video_encode_accelerator_host.h

Issue 649533003: C++11 declares a type safe null pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Presubmit errors Created 6 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: content/common/gpu/client/gpu_video_encode_accelerator_host.h
diff --git a/content/common/gpu/client/gpu_video_encode_accelerator_host.h b/content/common/gpu/client/gpu_video_encode_accelerator_host.h
index 62ae1dadfd5accb845a561dc58388718fbdcae8a..4656511570abbe1020166cf185a13cba93da4065 100644
--- a/content/common/gpu/client/gpu_video_encode_accelerator_host.h
+++ b/content/common/gpu/client/gpu_video_encode_accelerator_host.h
@@ -88,7 +88,7 @@ class GpuVideoEncodeAcceleratorHost
// Unowned reference to the GpuChannelHost to send IPC messages to the GPU
// process. |channel_| outlives |impl_|, so the reference is always valid as
- // long as it is not NULL.
+ // long as it is not nullptr.
GpuChannelHost* channel_;
// Route ID for the associated encoder in the GPU process.
@@ -99,7 +99,7 @@ class GpuVideoEncodeAcceleratorHost
// Unowned reference to the CommandBufferProxyImpl that created us. |this|
// registers as a DeletionObserver of |impl_|, so the reference is always
- // valid as long as it is not NULL.
+ // valid as long as it is not nullptr.
CommandBufferProxyImpl* impl_;
// media::VideoFrames sent to the encoder.

Powered by Google App Engine
This is Rietveld 408576698