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

Unified Diff: chrome/browser/ui/views/frame/browser_view.cc

Issue 6973047: Fix to reload He's Dead Jim page when navigating through windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/frame/browser_view.cc
diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
index bc4b9fc2814a348613ae44e6a8ba5bac67e063de..440355ffb913dd9a3c8cfdea4e82f5506b52709a 100644
--- a/chrome/browser/ui/views/frame/browser_view.cc
+++ b/chrome/browser/ui/views/frame/browser_view.cc
@@ -1634,8 +1634,10 @@ views::ClientView* BrowserView::CreateClientView(views::Window* window) {
}
void BrowserView::OnWindowActivationChanged(bool active) {
- if (active)
+ if (active) {
BrowserList::SetLastActive(browser_.get());
+ browser_->OnWindowActivated();
+ }
}
void BrowserView::OnWindowBeginUserBoundsChange() {
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698