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

Unified Diff: views/widget/root_view.cc

Issue 6591120: Update MouseEvent (initial pass). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update MouseEvent (initial pass). Created 9 years, 10 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
Index: views/widget/root_view.cc
diff --git a/views/widget/root_view.cc b/views/widget/root_view.cc
index 9d4bbc34648a60a9161b2e80605a4fbca4a5513b..5696fbfba28af021b79aa12b7723b6273fbfe79c 100644
--- a/views/widget/root_view.cc
+++ b/views/widget/root_view.cc
@@ -85,7 +85,7 @@ void RootView::ProcessMouseDragCanceled() {
if (mouse_pressed_handler_) {
// Synthesize a release event.
MouseEvent release_event(ui::ET_MOUSE_RELEASED, last_mouse_event_x_,
- last_mouse_event_y_, last_mouse_event_flags_);
+ last_mouse_event_y_, last_mouse_event_flags_);
OnMouseReleased(release_event, true);
}
}

Powered by Google App Engine
This is Rietveld 408576698