cefclient: Convert NULL to nullptr (see issue #2861)

This commit is contained in:
Marshall Greenblatt
2020-01-15 15:28:12 +01:00
parent b785d34d29
commit d02d252690
53 changed files with 173 additions and 170 deletions

View File

@@ -277,7 +277,7 @@ void ClientHandler::DetachDelegate() {
}
DCHECK(delegate_);
delegate_ = NULL;
delegate_ = nullptr;
}
bool ClientHandler::OnProcessMessageReceived(
@@ -615,7 +615,7 @@ void ClientHandler::OnBeforeClose(CefRefPtr<CefBrowser> browser) {
delete *(it);
}
message_handler_set_.clear();
message_router_ = NULL;
message_router_ = nullptr;
}
NotifyBrowserClosed(browser);
@@ -784,7 +784,7 @@ bool ClientHandler::OnSelectClientCertificate(
command_line->GetSwitchValue(switches::kSslClientCertificate);
if (cert_name.empty()) {
callback->Select(NULL);
callback->Select(nullptr);
return true;
}