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

This commit is contained in:
Marshall Greenblatt
2015-05-07 10:37:50 -04:00
parent 30b602cd8d
commit a69659d5af

View File

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