diff options
Diffstat (limited to 'chrome/browser/views/frame/browser_view_layout.h')
-rw-r--r-- | chrome/browser/views/frame/browser_view_layout.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/views/frame/browser_view_layout.h b/chrome/browser/views/frame/browser_view_layout.h index 7291e1b..3c187bd 100644 --- a/chrome/browser/views/frame/browser_view_layout.h +++ b/chrome/browser/views/frame/browser_view_layout.h @@ -47,6 +47,9 @@ class BrowserViewLayout : public views::LayoutManager { // for laying out subsequent controls. virtual int LayoutTabStrip(); + // Layout the big icon and title in the top left of extension app windows. + void LayoutExtensionAppIconAndTitle(); + // Layout the following controls, starting at |top|, returns the coordinate // of the bottom of the control, for laying out the next control. virtual int LayoutToolbar(int top); @@ -76,6 +79,8 @@ class BrowserViewLayout : public views::LayoutManager { } // Child views that the layout manager manages. + views::ImageView* extension_app_icon_; + views::Label* extension_app_title_; BaseTabStrip* tabstrip_; ToolbarView* toolbar_; views::View* contents_split_; |