Chromium Code Reviews| Index: Source/web/ChromeClientImpl.cpp |
| diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp |
| index b5c25af063f53929afcaa2bd79270c72442be272..0cb3fd3ba3775d6a0fbe197e145ab7c7e84e74dc 100644 |
| --- a/Source/web/ChromeClientImpl.cpp |
| +++ b/Source/web/ChromeClientImpl.cpp |
| @@ -211,6 +211,8 @@ void ChromeClientImpl::focusedFrameChanged(LocalFrame* frame) |
| WebLocalFrameImpl* webframe = WebLocalFrameImpl::fromFrame(frame); |
| if (webframe && webframe->client()) |
| webframe->client()->frameFocused(); |
| + |
| + m_webView->client()->focusedFrameChanged(); |
|
dcheng
2015/09/17 21:54:08
How come we can't just piggyback off the WebFrameC
dmazzoni
2015/09/17 22:11:57
That goes to only the frame that got focus.
To av
|
| } |
| namespace { |