| 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/views/frame/browser_frame.h" | 9 #include "chrome/browser/ui/views/frame/browser_frame.h" |
| 10 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" | 10 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 57 |
| 58 // Overridden from views::NonClientFrameView: | 58 // Overridden from views::NonClientFrameView: |
| 59 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; | 59 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; |
| 60 virtual gfx::Rect GetWindowBoundsForClientBounds( | 60 virtual gfx::Rect GetWindowBoundsForClientBounds( |
| 61 const gfx::Rect& client_bounds) const OVERRIDE; | 61 const gfx::Rect& client_bounds) const OVERRIDE; |
| 62 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; | 62 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; |
| 63 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) | 63 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) |
| 64 OVERRIDE; | 64 OVERRIDE; |
| 65 virtual void ResetWindowControls() OVERRIDE; | 65 virtual void ResetWindowControls() OVERRIDE; |
| 66 virtual void UpdateWindowIcon() OVERRIDE; | 66 virtual void UpdateWindowIcon() OVERRIDE; |
| 67 virtual void UpdateWindowTitle() OVERRIDE; |
| 67 | 68 |
| 68 // Overridden from views::View: | 69 // Overridden from views::View: |
| 69 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 70 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
| 70 virtual void Layout() OVERRIDE; | 71 virtual void Layout() OVERRIDE; |
| 71 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; | 72 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; |
| 72 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; | 73 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; |
| 73 | 74 |
| 74 // Overridden from views::ButtonListener: | 75 // Overridden from views::ButtonListener: |
| 75 virtual void ButtonPressed(views::Button* sender, const ui::Event& event) | 76 virtual void ButtonPressed(views::Button* sender, const ui::Event& event) |
| 76 OVERRIDE; | 77 OVERRIDE; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 | 167 |
| 167 content::NotificationRegistrar registrar_; | 168 content::NotificationRegistrar registrar_; |
| 168 | 169 |
| 169 // Background painter for the window frame. | 170 // Background painter for the window frame. |
| 170 scoped_ptr<views::FrameBackground> frame_background_; | 171 scoped_ptr<views::FrameBackground> frame_background_; |
| 171 | 172 |
| 172 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameView); | 173 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameView); |
| 173 }; | 174 }; |
| 174 | 175 |
| 175 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ | 176 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
| OLD | NEW |