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

Unified Diff: views/events/event.cc

Issue 8113028: Consolidate ui::NativeEvent and base::NativeEvent (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build Created 9 years, 2 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/events/event.cc
diff --git a/views/events/event.cc b/views/events/event.cc
index c9cfecc42b5b23b37133840f47252783dfab28d5..0e3db4bdbaacfab59494123fb4e8539c6e42ed15 100644
--- a/views/events/event.cc
+++ b/views/events/event.cc
@@ -243,7 +243,7 @@ MouseEvent::MouseEvent(const TouchEvent& touch)
// MouseWheelEvent, public:
#if !defined(USE_AURA)
-MouseWheelEvent::MouseWheelEvent(const ui::NativeEvent& native_event)
+MouseWheelEvent::MouseWheelEvent(const base::NativeEvent& native_event)
msw 2011/10/04 18:10:37 You can omit the base namespace here and use the v
oshima 2011/10/04 19:42:48 Done.
: MouseEvent(native_event),
offset_(ui::GetMouseWheelOffset(native_event)) {
}

Powered by Google App Engine
This is Rietveld 408576698