| Index: remoting/host/cast_video_capturer_adapter.cc
|
| diff --git a/remoting/host/cast_video_capturer_adapter.cc b/remoting/host/cast_video_capturer_adapter.cc
|
| index ddf0264617a181f971d86d8715e6beb90620feff..37d36fe418e2aff939503b12009fcae0a4b01704 100644
|
| --- a/remoting/host/cast_video_capturer_adapter.cc
|
| +++ b/remoting/host/cast_video_capturer_adapter.cc
|
| @@ -28,7 +28,7 @@ CastVideoCapturerAdapter::~CastVideoCapturerAdapter() {
|
|
|
| webrtc::SharedMemory* CastVideoCapturerAdapter::CreateSharedMemory(
|
| size_t size) {
|
| - return NULL;
|
| + return nullptr;
|
| }
|
|
|
| void CastVideoCapturerAdapter::OnCaptureCompleted(webrtc::DesktopFrame* frame) {
|
| @@ -163,7 +163,7 @@ void CastVideoCapturerAdapter::Stop() {
|
|
|
| capture_timer_.reset();
|
|
|
| - SetCaptureFormat(NULL);
|
| + SetCaptureFormat(nullptr);
|
| SetCaptureState(cricket::CS_STOPPED);
|
|
|
| VLOG(1) << "CastVideoCapturerAdapter stopped.";
|
|
|