Index: chrome/browser/views/frame/browser_frame_gtk.cc |
=================================================================== |
--- chrome/browser/views/frame/browser_frame_gtk.cc (revision 56738) |
+++ chrome/browser/views/frame/browser_frame_gtk.cc (working copy) |
@@ -48,6 +48,9 @@ |
virtual gfx::Rect GetBoundsForTabStrip(BaseTabStrip* tabstrip) const { |
return gfx::Rect(0, 0, width(), tabstrip->GetPreferredHeight()); |
} |
+ virtual int GetHorizontalTabStripVerticalOffset(bool restored) const { |
+ return 0; |
+ } |
virtual void UpdateThrobber(bool running) {} |
private: |
@@ -109,6 +112,10 @@ |
return browser_frame_view_->GetBoundsForTabStrip(tabstrip); |
} |
+int BrowserFrameGtk::GetHorizontalTabStripVerticalOffset(bool restored) const { |
+ return browser_frame_view_->GetHorizontalTabStripVerticalOffset(restored); |
+} |
+ |
void BrowserFrameGtk::UpdateThrobber(bool running) { |
browser_frame_view_->UpdateThrobber(running); |
} |