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

Unified Diff: chrome/browser/views/frame/browser_frame_gtk.cc

Issue 3167027: Merge 56737 - Fix numerous alignment problems, both horizontal and vertical, ... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/472/src/
Patch Set: Created 10 years, 4 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/views/frame/browser_frame_gtk.h ('k') | chrome/browser/views/frame/browser_frame_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « chrome/browser/views/frame/browser_frame_gtk.h ('k') | chrome/browser/views/frame/browser_frame_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698