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

Side by Side Diff: chrome/browser/ui/views/location_bar/zoom_bubble_view.h

Issue 10832282: Replace views::MouseEvent with ui::MouseEvent (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_VIEWS_LOCATION_BAR_ZOOM_BUBBLE_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ZOOM_BUBBLE_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ZOOM_BUBBLE_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ZOOM_BUBBLE_VIEW_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/timer.h" 9 #include "base/timer.h"
10 #include "ui/views/bubble/bubble_delegate.h" 10 #include "ui/views/bubble/bubble_delegate.h"
(...skipping 28 matching lines...) Expand all
39 39
40 void Close(); 40 void Close();
41 41
42 // Starts a timer which will close the bubble if |auto_close_| is true. 42 // Starts a timer which will close the bubble if |auto_close_| is true.
43 void StartTimerIfNecessary(); 43 void StartTimerIfNecessary();
44 44
45 // Stops the auto-close timer. 45 // Stops the auto-close timer.
46 void StopTimer(); 46 void StopTimer();
47 47
48 // views::View method. 48 // views::View method.
49 virtual void OnMouseEntered(const views::MouseEvent& event) OVERRIDE; 49 virtual void OnMouseEntered(const ui::MouseEvent& event) OVERRIDE;
50 virtual void OnMouseExited(const views::MouseEvent& event) OVERRIDE; 50 virtual void OnMouseExited(const ui::MouseEvent& event) OVERRIDE;
51 51
52 // views::ButtonListener method. 52 // views::ButtonListener method.
53 virtual void ButtonPressed(views::Button* sender, 53 virtual void ButtonPressed(views::Button* sender,
54 const ui::Event& event) OVERRIDE; 54 const ui::Event& event) OVERRIDE;
55 55
56 // views::BubbleDelegateView method. 56 // views::BubbleDelegateView method.
57 virtual void Init() OVERRIDE; 57 virtual void Init() OVERRIDE;
58 virtual gfx::Rect GetAnchorRect() OVERRIDE; 58 virtual gfx::Rect GetAnchorRect() OVERRIDE;
59 virtual void WindowClosing() OVERRIDE; 59 virtual void WindowClosing() OVERRIDE;
60 60
(...skipping 11 matching lines...) Expand all
72 // The TabContents for the page whose zoom has changed. 72 // The TabContents for the page whose zoom has changed.
73 TabContents* tab_contents_; 73 TabContents* tab_contents_;
74 74
75 // Whether the currently displayed bubble will automatically close. 75 // Whether the currently displayed bubble will automatically close.
76 bool auto_close_; 76 bool auto_close_;
77 77
78 DISALLOW_COPY_AND_ASSIGN(ZoomBubbleView); 78 DISALLOW_COPY_AND_ASSIGN(ZoomBubbleView);
79 }; 79 };
80 80
81 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ZOOM_BUBBLE_VIEW_H_ 81 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ZOOM_BUBBLE_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/location_bar/star_view.cc ('k') | chrome/browser/ui/views/location_bar/zoom_bubble_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698