| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_OPAQUE_BROWSER_FRAME_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "chrome/browser/ui/view_ids.h" | 9 #include "chrome/browser/ui/view_ids.h" |
| 10 #include "chrome/browser/ui/views/frame/browser_frame.h" | 10 #include "chrome/browser/ui/views/frame/browser_frame.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 public: | 38 public: |
| 39 // Constructs a non-client view for an BrowserFrame. | 39 // Constructs a non-client view for an BrowserFrame. |
| 40 OpaqueBrowserFrameView(BrowserFrame* frame, BrowserView* browser_view); | 40 OpaqueBrowserFrameView(BrowserFrame* frame, BrowserView* browser_view); |
| 41 virtual ~OpaqueBrowserFrameView(); | 41 virtual ~OpaqueBrowserFrameView(); |
| 42 | 42 |
| 43 // Overridden from BrowserNonClientFrameView: | 43 // Overridden from BrowserNonClientFrameView: |
| 44 virtual gfx::Rect GetBoundsForTabStrip(views::View* tabstrip) const OVERRIDE; | 44 virtual gfx::Rect GetBoundsForTabStrip(views::View* tabstrip) const OVERRIDE; |
| 45 virtual int GetTopInset() const OVERRIDE; | 45 virtual int GetTopInset() const OVERRIDE; |
| 46 virtual int GetThemeBackgroundXInset() const OVERRIDE; | 46 virtual int GetThemeBackgroundXInset() const OVERRIDE; |
| 47 virtual void UpdateThrobber(bool running) OVERRIDE; | 47 virtual void UpdateThrobber(bool running) OVERRIDE; |
| 48 virtual gfx::Size GetMinimumSize() OVERRIDE; | 48 virtual gfx::Size GetMinimumSize() const OVERRIDE; |
| 49 | 49 |
| 50 // Overridden from views::NonClientFrameView: | 50 // Overridden from views::NonClientFrameView: |
| 51 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; | 51 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; |
| 52 virtual gfx::Rect GetWindowBoundsForClientBounds( | 52 virtual gfx::Rect GetWindowBoundsForClientBounds( |
| 53 const gfx::Rect& client_bounds) const OVERRIDE; | 53 const gfx::Rect& client_bounds) const OVERRIDE; |
| 54 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; | 54 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; |
| 55 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) | 55 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) |
| 56 OVERRIDE; | 56 OVERRIDE; |
| 57 virtual void ResetWindowControls() OVERRIDE; | 57 virtual void ResetWindowControls() OVERRIDE; |
| 58 virtual void UpdateWindowIcon() OVERRIDE; | 58 virtual void UpdateWindowIcon() OVERRIDE; |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 // Background painter for the window frame. | 171 // Background painter for the window frame. |
| 172 scoped_ptr<views::FrameBackground> frame_background_; | 172 scoped_ptr<views::FrameBackground> frame_background_; |
| 173 | 173 |
| 174 // Observer that handles platform dependent configuration. | 174 // Observer that handles platform dependent configuration. |
| 175 scoped_ptr<OpaqueBrowserFrameViewPlatformSpecific> platform_observer_; | 175 scoped_ptr<OpaqueBrowserFrameViewPlatformSpecific> platform_observer_; |
| 176 | 176 |
| 177 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameView); | 177 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameView); |
| 178 }; | 178 }; |
| 179 | 179 |
| 180 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ | 180 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
| OLD | NEW |