Index: chrome/browser/notifications/balloon_collection_views.cc |
diff --git a/chrome/browser/notifications/balloon_collection_views.cc b/chrome/browser/notifications/balloon_collection_views.cc |
index 3c5e6acc4f2afe17a1ad54f9bfaac378ae668a3b..c436df88881758b3090fd7f79486ebad823b81fe 100644 |
--- a/chrome/browser/notifications/balloon_collection_views.cc |
+++ b/chrome/browser/notifications/balloon_collection_views.cc |
@@ -49,6 +49,18 @@ void BalloonCollectionImpl::DidProcessEvent(const base::NativeEvent& event) { |
HandleMouseMoveEvent(); |
break; |
} |
+#elif defined(USE_AURA) |
+ // This is deliberately used only in linux. For an aura build on windows, the |
+ // above block of code is fine. |
+ switch (ui::EventTypeFromNative(event)) { |
+ case ui::ET_MOUSE_MOVED: |
+ case ui::ET_MOUSE_DRAGGED: |
+ case ui::ET_MOUSE_EXITED: |
+ HandleMouseMoveEvent(); |
+ break; |
+ default: |
+ break; |
+ } |
#else |
NOTIMPLEMENTED(); |
#endif |