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

Side by Side Diff: chrome/browser/ui/panels/panel_browser_frame_view.h

Issue 10827271: Replace views::Event with ui::Event. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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_PANELS_PANEL_BROWSER_FRAME_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_FRAME_VIEW_H_
6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_FRAME_VIEW_H_ 6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_FRAME_VIEW_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/gtest_prod_util.h" 9 #include "base/gtest_prod_util.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 virtual gfx::Size GetMinimumSize() OVERRIDE; 72 virtual gfx::Size GetMinimumSize() 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 GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; 75 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
76 virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE; 76 virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE;
77 virtual bool OnMouseDragged(const views::MouseEvent& event) OVERRIDE; 77 virtual bool OnMouseDragged(const views::MouseEvent& event) OVERRIDE;
78 virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE; 78 virtual void OnMouseReleased(const views::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 views::Event& event) 82 virtual void ButtonPressed(views::Button* sender, const ui::Event& event)
83 OVERRIDE; 83 OVERRIDE;
84 84
85 // Overridden from chrome::TabIconViewModel: 85 // Overridden from chrome::TabIconViewModel:
86 virtual bool ShouldTabIconViewAnimate() const OVERRIDE; 86 virtual bool ShouldTabIconViewAnimate() const OVERRIDE;
87 virtual gfx::ImageSkia GetFaviconForTabIconView() OVERRIDE; 87 virtual gfx::ImageSkia GetFaviconForTabIconView() OVERRIDE;
88 88
89 private: 89 private:
90 friend class PanelBrowserViewTest; 90 friend class PanelBrowserViewTest;
91 friend class NativePanelTestingWin; 91 friend class NativePanelTestingWin;
92 92
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 views::ImageButton* minimize_button_; 138 views::ImageButton* minimize_button_;
139 views::ImageButton* restore_button_; 139 views::ImageButton* restore_button_;
140 TabIconView* title_icon_; 140 TabIconView* title_icon_;
141 views::Label* title_label_; 141 views::Label* title_label_;
142 gfx::Rect client_view_bounds_; 142 gfx::Rect client_view_bounds_;
143 143
144 DISALLOW_COPY_AND_ASSIGN(PanelBrowserFrameView); 144 DISALLOW_COPY_AND_ASSIGN(PanelBrowserFrameView);
145 }; 145 };
146 146
147 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_FRAME_VIEW_H_ 147 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_FRAME_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/first_run/try_chrome_dialog_view.cc ('k') | chrome/browser/ui/panels/panel_browser_frame_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698