mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Call OnTitleChange after navigation/reload even if the title has not changed (issue #1441).
git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/2062@1920 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -2602,12 +2602,6 @@ void CefBrowserHostImpl::Observe(int type,
|
||||
title = web_contents->GetTitle();
|
||||
}
|
||||
|
||||
// Don't notify if the title hasn't changed.
|
||||
if (title == title_)
|
||||
return;
|
||||
|
||||
title_ = title;
|
||||
|
||||
if (client_.get()) {
|
||||
CefRefPtr<CefDisplayHandler> handler = client_->GetDisplayHandler();
|
||||
if (handler.get())
|
||||
|
Reference in New Issue
Block a user