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

This commit is contained in:
Marshall Greenblatt
2020-01-15 14:36:24 +01:00
parent c05c3e4065
commit ea63799c3e
98 changed files with 538 additions and 527 deletions

View File

@@ -178,7 +178,7 @@ class CefApp : public virtual CefBaseRefCounted {
///
/*--cef()--*/
virtual CefRefPtr<CefResourceBundleHandler> GetResourceBundleHandler() {
return NULL;
return nullptr;
}
///
@@ -187,7 +187,7 @@ class CefApp : public virtual CefBaseRefCounted {
///
/*--cef()--*/
virtual CefRefPtr<CefBrowserProcessHandler> GetBrowserProcessHandler() {
return NULL;
return nullptr;
}
///
@@ -196,7 +196,7 @@ class CefApp : public virtual CefBaseRefCounted {
///
/*--cef()--*/
virtual CefRefPtr<CefRenderProcessHandler> GetRenderProcessHandler() {
return NULL;
return nullptr;
}
};