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

Unified Diff: ash/wm/maximize_bubble_controller.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/test/capture_tracking_view.cc ('k') | ash/wm/partial_screenshot_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/maximize_bubble_controller.cc
===================================================================
--- ash/wm/maximize_bubble_controller.cc (revision 151406)
+++ ash/wm/maximize_bubble_controller.cc (working copy)
@@ -346,8 +346,8 @@
// CustomButton overrides:
virtual void OnMouseCaptureLost() OVERRIDE;
- virtual void OnMouseEntered(const views::MouseEvent& event) OVERRIDE;
- virtual void OnMouseExited(const views::MouseEvent& event) OVERRIDE;
+ virtual void OnMouseEntered(const ui::MouseEvent& event) OVERRIDE;
+ virtual void OnMouseExited(const ui::MouseEvent& event) OVERRIDE;
private:
// The creating class which needs to get notified in case of a hover event.
@@ -730,12 +730,12 @@
views::ImageButton::OnMouseCaptureLost();
}
-void BubbleDialogButton::OnMouseEntered(const views::MouseEvent& event) {
+void BubbleDialogButton::OnMouseEntered(const ui::MouseEvent& event) {
button_row_->ButtonHovered(this);
views::ImageButton::OnMouseEntered(event);
}
-void BubbleDialogButton::OnMouseExited(const views::MouseEvent& event) {
+void BubbleDialogButton::OnMouseExited(const ui::MouseEvent& event) {
button_row_->ButtonHovered(NULL);
views::ImageButton::OnMouseExited(event);
}
« no previous file with comments | « ash/test/capture_tracking_view.cc ('k') | ash/wm/partial_screenshot_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698