Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2598)

Unified Diff: Source/web/ChromeClientImpl.cpp

Issue 1348503003: One AXObjectCache per frame (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated or deleted layout tests Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698