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

Unified Diff: ash/launcher/launcher_button_host.h

Issue 10828265: Replace views::LocatedEvent with ui::LocatedEvent (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 | « no previous file | ash/launcher/launcher_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/launcher/launcher_button_host.h
===================================================================
--- ash/launcher/launcher_button_host.h (revision 151267)
+++ ash/launcher/launcher_button_host.h (working copy)
@@ -9,8 +9,11 @@
#include "ash/wm/shelf_types.h"
#include "base/string16.h"
+namespace ui {
+class LocatedEvent;
+}
+
namespace views {
-class LocatedEvent;
class View;
}
@@ -30,12 +33,12 @@
// Invoked when a pointer device is pressed on a view.
virtual void PointerPressedOnButton(views::View* view,
Pointer pointer,
- const views::LocatedEvent& event) = 0;
+ const ui::LocatedEvent& event) = 0;
// Invoked when a pointer device is dragged over a view.
virtual void PointerDraggedOnButton(views::View* view,
Pointer pointer,
- const views::LocatedEvent& event) = 0;
+ const ui::LocatedEvent& event) = 0;
// Invoked either if a pointer device is released or mouse capture canceled.
virtual void PointerReleasedOnButton(views::View* view,
« no previous file with comments | « no previous file | ash/launcher/launcher_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698