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

This commit is contained in:
Marshall Greenblatt 2015-05-07 10:37:50 -04:00
parent b1dff4cc77
commit 89641b0652

View File

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