Pass transition type to CefLoadHandler::OnLoadStart (issue #1943)

This commit is contained in:
Marshall Greenblatt
2016-07-12 11:59:42 -04:00
parent 7641240f2e
commit 9bfcca74f2
9 changed files with 65 additions and 28 deletions

View File

@ -689,7 +689,7 @@ void CefBrowserImpl::OnLoadStart(blink::WebLocalFrame* frame) {
CefRefPtr<CefLoadHandler> load_handler = handler->GetLoadHandler();
if (load_handler.get()) {
CefRefPtr<CefFrameImpl> cef_frame = GetWebFrameImpl(frame);
load_handler->OnLoadStart(this, cef_frame.get());
load_handler->OnLoadStart(this, cef_frame.get(), TT_EXPLICIT);
}
}
}