Fix DCHECK failure when calling OnSetFocus from LoadRequest (issue #685).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@776 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
e620a6831f
commit
b7656f50fd
|
@ -312,12 +312,7 @@ void CefBrowserHostImpl::SetFocus(bool enable) {
|
||||||
if (!enable)
|
if (!enable)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (CEF_CURRENTLY_ON_UIT()) {
|
|
||||||
OnSetFocus(FOCUS_SOURCE_SYSTEM);
|
OnSetFocus(FOCUS_SOURCE_SYSTEM);
|
||||||
} else {
|
|
||||||
CEF_POST_TASK(CEF_UIT,
|
|
||||||
base::Bind(&CefBrowserHostImpl::SetFocus, this, enable));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CefWindowHandle CefBrowserHostImpl::GetWindowHandle() {
|
CefWindowHandle CefBrowserHostImpl::GetWindowHandle() {
|
||||||
|
@ -838,8 +833,7 @@ GURL CefBrowserHostImpl::GetLoadingURL() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CefBrowserHostImpl::OnSetFocus(cef_focus_source_t source) {
|
void CefBrowserHostImpl::OnSetFocus(cef_focus_source_t source) {
|
||||||
CEF_REQUIRE_UIT();
|
if (CEF_CURRENTLY_ON_UIT()) {
|
||||||
|
|
||||||
// SetFocus() might be called while inside the OnSetFocus() callback. If so,
|
// SetFocus() might be called while inside the OnSetFocus() callback. If so,
|
||||||
// don't re-enter the callback.
|
// don't re-enter the callback.
|
||||||
if (!is_in_onsetfocus_) {
|
if (!is_in_onsetfocus_) {
|
||||||
|
@ -858,6 +852,10 @@ void CefBrowserHostImpl::OnSetFocus(cef_focus_source_t source) {
|
||||||
|
|
||||||
if (web_contents_.get())
|
if (web_contents_.get())
|
||||||
web_contents_->Focus();
|
web_contents_->Focus();
|
||||||
|
} else {
|
||||||
|
CEF_POST_TASK(CEF_UIT,
|
||||||
|
base::Bind(&CefBrowserHostImpl::OnSetFocus, this, source));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue