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

Unified Diff: chrome/browser/ui/views/event_utils.cc

Issue 10827271: Replace views::Event with ui::Event. (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
Index: chrome/browser/ui/views/event_utils.cc
===================================================================
--- chrome/browser/ui/views/event_utils.cc (revision 151055)
+++ chrome/browser/ui/views/event_utils.cc (working copy)
@@ -4,11 +4,11 @@
#include "chrome/browser/ui/views/event_utils.h"
-#include "ui/views/events/event.h"
+#include "ui/base/event.h"
namespace event_utils {
-bool IsPossibleDispositionEvent(const views::Event& event) {
+bool IsPossibleDispositionEvent(const ui::Event& event) {
return event.IsMouseEvent() && (event.flags() &
(ui::EF_LEFT_MOUSE_BUTTON | ui::EF_MIDDLE_MOUSE_BUTTON));
}
« no previous file with comments | « chrome/browser/ui/views/event_utils.h ('k') | chrome/browser/ui/views/extensions/bundle_installed_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698