| 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 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" | 9 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) | 23 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) |
| 24 OVERRIDE; | 24 OVERRIDE; |
| 25 virtual void EnableClose(bool enable) OVERRIDE; | 25 virtual void EnableClose(bool enable) OVERRIDE; |
| 26 virtual void ResetWindowControls() OVERRIDE; | 26 virtual void ResetWindowControls() OVERRIDE; |
| 27 virtual void UpdateWindowIcon() OVERRIDE; | 27 virtual void UpdateWindowIcon() OVERRIDE; |
| 28 | 28 |
| 29 // BrowserNonClientFrameView: | 29 // BrowserNonClientFrameView: |
| 30 virtual gfx::Rect GetBoundsForTabStrip(views::View* tabstrip) const OVERRIDE; | 30 virtual gfx::Rect GetBoundsForTabStrip(views::View* tabstrip) const OVERRIDE; |
| 31 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const OVERRIDE; | 31 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const OVERRIDE; |
| 32 virtual void UpdateThrobber(bool running) OVERRIDE; | 32 virtual void UpdateThrobber(bool running) OVERRIDE; |
| 33 virtual AvatarMenuButton* GetAvatarMenuButton() OVERRIDE; |
| 33 | 34 |
| 34 private: | 35 private: |
| 35 DISALLOW_COPY_AND_ASSIGN(PopupNonClientFrameView); | 36 DISALLOW_COPY_AND_ASSIGN(PopupNonClientFrameView); |
| 36 }; | 37 }; |
| 37 | 38 |
| 38 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_ | 39 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_ |
| OLD | NEW |