diff options
author | jcivelli@chromium.org <jcivelli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 06:44:38 +0000 |
---|---|---|
committer | jcivelli@chromium.org <jcivelli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 06:44:38 +0000 |
commit | 494f5c479d1c61ecfb72ec1e0af89dd8e363d395 (patch) | |
tree | 2fef3beadf58d7c91dd74e326840f5a1cee38649 /chrome/browser/renderer_host/render_widget_host.h | |
parent | 603e195332575bbe0fd60ba86041e96516372522 (diff) | |
download | chromium_src-494f5c479d1c61ecfb72ec1e0af89dd8e363d395.zip chromium_src-494f5c479d1c61ecfb72ec1e0af89dd8e363d395.tar.gz chromium_src-494f5c479d1c61ecfb72ec1e0af89dd8e363d395.tar.bz2 |
Making window.focus() work in Chrome.
A patch on the WebKit side https://bugs.webkit.org/show_bug.cgi?id=43542
ensures we get the correct notification when window.focus()/blur() is called.
This CL makes the browser active/unactive in response to the focus/blur message.
BUG=29643
TEST=Visit gmail. Open an IM conversation window and pop-it out.
Focus the browser (so the IM window is in the back). Click on the person name in the IM section of gmail.
The conversation window should be brought back to the front.
Repeat but this time minimize the conversation window.
Review URL: http://codereview.chromium.org/3060045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55678 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/renderer_host/render_widget_host.h')
-rw-r--r-- | chrome/browser/renderer_host/render_widget_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/renderer_host/render_widget_host.h b/chrome/browser/renderer_host/render_widget_host.h index d729cba..2f31158 100644 --- a/chrome/browser/renderer_host/render_widget_host.h +++ b/chrome/browser/renderer_host/render_widget_host.h @@ -481,8 +481,8 @@ class RenderWidgetHost : public IPC::Channel::Listener, void OnMsgUpdateVideo(TransportDIB::Id bitmap, const gfx::Rect& bitmap_rect); void OnMsgDestroyVideo(); void OnMsgInputEventAck(const IPC::Message& message); - void OnMsgFocus(); - void OnMsgBlur(); + virtual void OnMsgFocus(); + virtual void OnMsgBlur(); void OnMsgSetCursor(const WebCursor& cursor); void OnMsgImeUpdateTextInputState(WebKit::WebTextInputType type, |