Fix incorrct DCHECK in CefAllowCertificateErrorCallbackImpl::RunNow (issue #1626)

This commit is contained in:
Marshall Greenblatt 2015-05-07 10:37:50 -04:00
parent b849e7fb70
commit a388a69356
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ class CefAllowCertificateErrorCallbackImpl : public CefRequestCallback {
private:
static void RunNow(const CallbackType& callback, bool allow) {
CEF_REQUIRE_IOT();
CEF_REQUIRE_UIT();
callback.Run(allow);
}