diff --git a/libcef/browser/browser_host_impl.cc b/libcef/browser/browser_host_impl.cc index 933a2bdf8..1935bc367 100644 --- a/libcef/browser/browser_host_impl.cc +++ b/libcef/browser/browser_host_impl.cc @@ -2618,12 +2618,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 handler = client_->GetDisplayHandler(); if (handler.get()) diff --git a/libcef/browser/browser_host_impl.h b/libcef/browser/browser_host_impl.h index a077b8c0d..4a52ce1f0 100644 --- a/libcef/browser/browser_host_impl.h +++ b/libcef/browser/browser_host_impl.h @@ -644,9 +644,6 @@ class CefBrowserHostImpl : public CefBrowserHost, // True if a file chooser is currently pending. bool file_chooser_pending_; - // Current title for the main frame. Only accessed on the UI thread. - base::string16 title_; - #if defined(USE_AURA) // Widget hosting the web contents. It will be deleted automatically when the // associated root window is destroyed.