| Index: chrome/browser/views/tab_contents/native_tab_contents_container_gtk.cc
|
| ===================================================================
|
| --- chrome/browser/views/tab_contents/native_tab_contents_container_gtk.cc (revision 18286)
|
| +++ chrome/browser/views/tab_contents/native_tab_contents_container_gtk.cc (working copy)
|
| @@ -112,6 +112,18 @@
|
| return this;
|
| }
|
|
|
| +void NativeTabContentsContainerGtk::TabContentsFocused(
|
| + TabContents* tab_contents) {
|
| +#if defined(OS_WIN)
|
| + views::FocusManager* focus_manager = GetFocusManager();
|
| + if (!focus_manager) {
|
| + NOTREACHED();
|
| + return;
|
| + }
|
| + focus_manager->SetFocusedView(this);
|
| +#endif
|
| +}
|
| +
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // NativeTabContentsContainerGtk, views::View overrides:
|
|
|
|
|