| Index: remoting/host/audio_scheduler.cc
|
| diff --git a/remoting/host/audio_scheduler.cc b/remoting/host/audio_scheduler.cc
|
| index b8bf7ef07d8e74339214864e3d0e509db0b9e956..1b995b600439686d6bf1926870bd2bb5f8a53b19 100644
|
| --- a/remoting/host/audio_scheduler.cc
|
| +++ b/remoting/host/audio_scheduler.cc
|
| @@ -46,7 +46,7 @@ void AudioScheduler::Stop() {
|
| DCHECK(audio_stub_);
|
|
|
| // Clear |audio_stub_| to prevent audio packets being delivered to the client.
|
| - audio_stub_ = NULL;
|
| + audio_stub_ = nullptr;
|
|
|
| audio_task_runner_->PostTask(
|
| FROM_HERE,
|
| @@ -89,7 +89,7 @@ void AudioScheduler::EncodeAudioPacket(scoped_ptr<AudioPacket> packet) {
|
| scoped_ptr<AudioPacket> encoded_packet =
|
| audio_encoder_->Encode(packet.Pass());
|
|
|
| - // The audio encoder returns a NULL audio packet if there's no audio to send.
|
| + // The audio encoder returns a null audio packet if there's no audio to send.
|
| if (encoded_packet.get()) {
|
| network_task_runner_->PostTask(
|
| FROM_HERE, base::Bind(&AudioScheduler::SendAudioPacket,
|
|
|