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

Side by Side Diff: chrome/browser/views/frame/popup_non_client_frame_view.cc

Issue 3137019: Fix numerous alignment problems, both horizontal and vertical, in drawing the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/views/frame/popup_non_client_frame_view.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/views/frame/popup_non_client_frame_view.h" 5 #include "chrome/browser/views/frame/popup_non_client_frame_view.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/views/tabs/base_tab_strip.h" 8 #include "chrome/browser/views/tabs/base_tab_strip.h"
9 #include "gfx/point.h" 9 #include "gfx/point.h"
10 #include "gfx/rect.h" 10 #include "gfx/rect.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 } 43 }
44 44
45 void PopupNonClientFrameView::ResetWindowControls() { 45 void PopupNonClientFrameView::ResetWindowControls() {
46 } 46 }
47 47
48 gfx::Rect PopupNonClientFrameView::GetBoundsForTabStrip( 48 gfx::Rect PopupNonClientFrameView::GetBoundsForTabStrip(
49 BaseTabStrip* tabstrip) const { 49 BaseTabStrip* tabstrip) const {
50 return gfx::Rect(0, 0, width(), tabstrip->GetPreferredHeight()); 50 return gfx::Rect(0, 0, width(), tabstrip->GetPreferredHeight());
51 } 51 }
52 52
53 int PopupNonClientFrameView::GetHorizontalTabStripVerticalOffset(
54 bool restored) const {
55 return 0;
56 }
57
53 void PopupNonClientFrameView::UpdateThrobber(bool running) { 58 void PopupNonClientFrameView::UpdateThrobber(bool running) {
54 } 59 }
OLDNEW
« no previous file with comments | « chrome/browser/views/frame/popup_non_client_frame_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698