| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index e89f17a8a70ed821c44a32b5a325624cc9536920..8d6c6a02fbb2d0fe27ecc4a859cd18e9f0d86c6d 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -3947,6 +3947,12 @@ void WebContentsImpl::DidAccessInitialDocument() {
|
| NotifyNavigationStateChanged(INVALIDATE_TYPE_URL);
|
| }
|
|
|
| +void WebContentsImpl::DidChangeName(RenderFrameHost* render_frame_host,
|
| + const std::string& name) {
|
| + FOR_EACH_OBSERVER(WebContentsObserver, observers_,
|
| + FrameNameChanged(render_frame_host, name));
|
| +}
|
| +
|
| void WebContentsImpl::DidDisownOpener(RenderFrameHost* render_frame_host) {
|
| // No action is necessary if the opener has already been cleared.
|
| if (!opener_)
|
|
|