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

Unified Diff: cc/resources/video_resource_updater.cc

Issue 638353002: [C++11 Allowed Features] Declares a type-safe null pointer converting from NULL to nullptr in src/… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Formating. 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: cc/resources/video_resource_updater.cc
diff --git a/cc/resources/video_resource_updater.cc b/cc/resources/video_resource_updater.cc
index f62b6e62aa14a830a87504ff19e9f0b0d9a3c114..47bf4bc5ef0406c2d71adfbd9294e0283cc387e9 100644
--- a/cc/resources/video_resource_updater.cc
+++ b/cc/resources/video_resource_updater.cc
@@ -143,7 +143,7 @@ VideoFrameExternalResources VideoResourceUpdater::CreateForSoftwarePlanes(
input_frame_format != media::VideoFrame::YV24)
return VideoFrameExternalResources();
- bool software_compositor = context_provider_ == NULL;
+ bool software_compositor = context_provider_ == nullptr;
ResourceFormat output_resource_format = kYUVResourceFormat;
size_t output_plane_count = media::VideoFrame::NumPlanes(input_frame_format);

Powered by Google App Engine
This is Rietveld 408576698