Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(419)

Side by Side Diff: chrome/browser/ui/views/panels/panel_frame_view.h

Issue 273223002: views: Make view::Views::GetPreferredSize() const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More compile fix for ToT Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_PANELS_PANEL_FRAME_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_FRAME_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_FRAME_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_FRAME_VIEW_H_
7 7
8 #include "chrome/browser/ui/panels/panel_constants.h" 8 #include "chrome/browser/ui/panels/panel_constants.h"
9 #include "chrome/browser/ui/views/tab_icon_view_model.h" 9 #include "chrome/browser/ui/views/tab_icon_view_model.h"
10 #include "ui/views/controls/button/button.h" 10 #include "ui/views/controls/button/button.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, 63 virtual void GetWindowMask(const gfx::Size& size,
64 gfx::Path* window_mask) OVERRIDE; 64 gfx::Path* window_mask) 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 virtual void UpdateWindowTitle() OVERRIDE;
68 68
69 // Overridden from views::View: 69 // Overridden from views::View:
70 virtual gfx::Size GetPreferredSize() OVERRIDE; 70 virtual gfx::Size GetPreferredSize() const OVERRIDE;
71 virtual const char* GetClassName() const OVERRIDE; 71 virtual const char* GetClassName() const OVERRIDE;
72 virtual gfx::Size GetMinimumSize() OVERRIDE; 72 virtual gfx::Size GetMinimumSize() const OVERRIDE;
73 virtual gfx::Size GetMaximumSize() OVERRIDE; 73 virtual gfx::Size GetMaximumSize() OVERRIDE;
74 virtual void Layout() OVERRIDE; 74 virtual void Layout() OVERRIDE;
75 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; 75 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
76 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; 76 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE;
77 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE; 77 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE;
78 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; 78 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE;
79 virtual void OnMouseCaptureLost() OVERRIDE; 79 virtual void OnMouseCaptureLost() OVERRIDE;
80 80
81 // Overridden from views::ButtonListener: 81 // Overridden from views::ButtonListener:
82 virtual void ButtonPressed(views::Button* sender, const ui::Event& event) 82 virtual void ButtonPressed(views::Button* sender, const ui::Event& event)
(...skipping 25 matching lines...) Expand all
108 views::ImageButton* minimize_button_; 108 views::ImageButton* minimize_button_;
109 views::ImageButton* restore_button_; 109 views::ImageButton* restore_button_;
110 TabIconView* title_icon_; 110 TabIconView* title_icon_;
111 views::Label* title_label_; 111 views::Label* title_label_;
112 panel::CornerStyle corner_style_; 112 panel::CornerStyle corner_style_;
113 113
114 DISALLOW_COPY_AND_ASSIGN(PanelFrameView); 114 DISALLOW_COPY_AND_ASSIGN(PanelFrameView);
115 }; 115 };
116 116
117 #endif // CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_FRAME_VIEW_H_ 117 #endif // CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_FRAME_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_view_views.cc ('k') | chrome/browser/ui/views/panels/panel_frame_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698