| Index: content/browser/media/webrtc/webrtc_internals.cc
|
| diff --git a/content/browser/media/webrtc/webrtc_internals.cc b/content/browser/media/webrtc/webrtc_internals.cc
|
| index 1ebc884a5cb0a7816f607c31ddd38dc9ebedd0b0..09d7a970d26052e49cedf927f7bf87711bfb1c1a 100644
|
| --- a/content/browser/media/webrtc/webrtc_internals.cc
|
| +++ b/content/browser/media/webrtc/webrtc_internals.cc
|
| @@ -278,7 +278,7 @@ void WebRTCInternals::EnableAudioDebugRecordings(
|
| EnableAudioDebugRecordingsOnAllRenderProcessHosts();
|
| #else
|
| selecting_event_log_ = false;
|
| - DCHECK(select_file_dialog_ == nullptr);
|
| + DCHECK(!select_file_dialog_);
|
| select_file_dialog_ = ui::SelectFileDialog::Create(this, NULL);
|
| select_file_dialog_->SelectFile(
|
| ui::SelectFileDialog::SELECT_SAVEAS_FILE,
|
| @@ -330,7 +330,7 @@ void WebRTCInternals::SetEventLogRecordings(
|
| EnableEventLogRecordingsOnAllRenderProcessHosts();
|
| #else
|
| DCHECK(web_contents);
|
| - DCHECK(select_file_dialog_ == nullptr);
|
| + DCHECK(!select_file_dialog_);
|
| selecting_event_log_ = true;
|
| select_file_dialog_ = ui::SelectFileDialog::Create(this, nullptr);
|
| select_file_dialog_->SelectFile(
|
|
|