Index: content/shell/shell.cc |
=================================================================== |
--- content/shell/shell.cc (revision 102852) |
+++ content/shell/shell.cc (working copy) |
@@ -81,18 +81,22 @@ |
GURL(), |
PageTransition::TYPED, |
std::string()); |
+ tab_contents_->Focus(); |
} |
void Shell::GoBackOrForward(int offset) { |
tab_contents_->controller().GoToOffset(offset); |
+ tab_contents_->Focus(); |
} |
void Shell::Reload() { |
tab_contents_->controller().Reload(false); |
+ tab_contents_->Focus(); |
} |
void Shell::Stop() { |
tab_contents_->Stop(); |
+ tab_contents_->Focus(); |
} |
void Shell::UpdateNavigationControls() { |