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

Unified Diff: ui/aura/event.cc

Issue 7983039: Add support for MouseEnter/MouseExit event types to be sent to aura::Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | « ui/aura/event.h ('k') | ui/aura/root_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/event.cc
===================================================================
--- ui/aura/event.cc (revision 102135)
+++ ui/aura/event.cc (working copy)
@@ -49,6 +49,14 @@
: LocatedEvent(model, source, target) {
}
+MouseEvent::MouseEvent(const MouseEvent& model,
+ Window* source,
+ Window* target,
+ ui::EventType type)
+ : LocatedEvent(model, source, target) {
+ set_type(type);
+}
+
MouseEvent::MouseEvent(ui::EventType type,
const gfx::Point& location,
int flags)
« no previous file with comments | « ui/aura/event.h ('k') | ui/aura/root_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698