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

Side by Side Diff: chrome/browser/ui/views/frame/browser_frame.cc

Issue 8356028: Add shortcut to show avatar menu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build error Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/frame/browser_frame.h" 5 #include "chrome/browser/ui/views/frame/browser_frame.h"
6 6
7 #include "chrome/browser/themes/theme_service.h" 7 #include "chrome/browser/themes/theme_service.h"
8 #include "chrome/browser/themes/theme_service_factory.h" 8 #include "chrome/browser/themes/theme_service_factory.h"
9 #include "chrome/browser/ui/browser.h" 9 #include "chrome/browser/ui/browser.h"
10 #include "chrome/browser/ui/browser_list.h" 10 #include "chrome/browser/ui/browser_list.h"
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 // When running under remote desktop, if the remote desktop client is not 142 // When running under remote desktop, if the remote desktop client is not
143 // active on the users desktop, then none of the windows contained in the 143 // active on the users desktop, then none of the windows contained in the
144 // remote desktop will be activated. However, NativeWidgetWin::Activate() 144 // remote desktop will be activated. However, NativeWidgetWin::Activate()
145 // will still bring this browser window to the foreground. We explicitly 145 // will still bring this browser window to the foreground. We explicitly
146 // set ourselves as the last active browser window to ensure that we get 146 // set ourselves as the last active browser window to ensure that we get
147 // treated as such by the rest of Chrome. 147 // treated as such by the rest of Chrome.
148 BrowserList::SetLastActive(browser_view_->browser()); 148 BrowserList::SetLastActive(browser_view_->browser());
149 } 149 }
150 Widget::OnNativeWidgetActivationChanged(active); 150 Widget::OnNativeWidgetActivationChanged(active);
151 } 151 }
152
153 AvatarMenuButton* BrowserFrame::GetAvatarMenuButton() {
154 return browser_frame_view_->GetAvatarMenuButton();
155 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_frame.h ('k') | chrome/browser/ui/views/frame/browser_non_client_frame_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698