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

Unified Diff: chrome/browser/browser_window.h

Issue 122002: Moving the WM_SETFOCUS message processing out of FocusManager (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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/browser_focus_uitest.cc ('k') | chrome/browser/cocoa/browser_window_cocoa.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_window.h
===================================================================
--- chrome/browser/browser_window.h (revision 18286)
+++ chrome/browser/browser_window.h (working copy)
@@ -16,6 +16,7 @@
class HtmlDialogUIDelegate;
class StatusBubble;
class TabContents;
+class TabContentsContainer;
namespace gfx {
class Rect;
@@ -190,6 +191,10 @@
// during infobar animations).
virtual int GetExtraRenderViewHeight() const = 0;
+ // Notification that |tab_contents| got the focus through user action (click
+ // on the page).
+ virtual void TabContentsFocused(TabContents* tab_contents) = 0;
+
// Construct a BrowserWindow implementation for the specified |browser|.
static BrowserWindow* CreateBrowserWindow(Browser* browser);
@@ -217,6 +222,9 @@
// Returns the LocationBarView.
virtual LocationBarView* GetLocationBarView() const = 0;
+
+ // Returns the TabContentsContainer.
+ virtual views::View* GetTabContentsContainerView() const = 0;
#endif
};
« no previous file with comments | « chrome/browser/browser_focus_uitest.cc ('k') | chrome/browser/cocoa/browser_window_cocoa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698