| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/ui/views/frame/popup_non_client_frame_view.h" | 5 #include "chrome/browser/ui/views/frame/popup_non_client_frame_view.h" |
| 6 | 6 |
| 7 #include "chrome/browser/ui/views/frame/browser_frame.h" | 7 #include "chrome/browser/ui/views/frame/browser_frame.h" |
| 8 #include "ui/gfx/point.h" | 8 #include "ui/gfx/point.h" |
| 9 #include "ui/gfx/rect.h" | 9 #include "ui/gfx/rect.h" |
| 10 #include "ui/gfx/size.h" | 10 #include "ui/gfx/size.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 return gfx::Rect(0, 0, width(), tabstrip->GetPreferredSize().height()); | 48 return gfx::Rect(0, 0, width(), tabstrip->GetPreferredSize().height()); |
| 49 } | 49 } |
| 50 | 50 |
| 51 int PopupNonClientFrameView::GetHorizontalTabStripVerticalOffset( | 51 int PopupNonClientFrameView::GetHorizontalTabStripVerticalOffset( |
| 52 bool restored) const { | 52 bool restored) const { |
| 53 return 0; | 53 return 0; |
| 54 } | 54 } |
| 55 | 55 |
| 56 void PopupNonClientFrameView::UpdateThrobber(bool running) { | 56 void PopupNonClientFrameView::UpdateThrobber(bool running) { |
| 57 } | 57 } |
| 58 |
| 59 AvatarMenuButton* PopupNonClientFrameView::GetAvatarMenuButton() { |
| 60 return NULL; |
| 61 } |
| OLD | NEW |