| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |