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

Unified Diff: ui/base/event.h

Issue 10868096: aura: Fix propagating wheel events. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more 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
« no previous file with comments | « no previous file | ui/base/event.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/event.h
diff --git a/ui/base/event.h b/ui/base/event.h
index fe4a1e41597499d9f2a1b9a2c481f6d0d9c44036..bc388e3eaa52858122ec1afd6e1f672c026de721 100644
--- a/ui/base/event.h
+++ b/ui/base/event.h
@@ -172,9 +172,6 @@ class UI_EXPORT LocatedEvent : public Event {
const gfx::Point& root_location,
int flags);
- // Called from MouseEvent's copy ctor.
- explicit LocatedEvent(const LocatedEvent& model);
-
gfx::Point location_;
// |location_| multiplied by an optional transformation matrix for
@@ -266,10 +263,6 @@ class UI_EXPORT MouseEvent : public LocatedEvent {
// flags. Use this to determine the button that was pressed or released.
int changed_button_flags() const { return changed_button_flags_; }
- protected:
- // Called from MouseWheelEvent's ctor.
- explicit MouseEvent(const MouseEvent& model);
-
private:
// Returns the repeat count based on the previous mouse click, if it is
// recent enough and within a small enough distance.
@@ -291,7 +284,6 @@ class UI_EXPORT MouseWheelEvent : public MouseEvent {
static const int kWheelDelta;
explicit MouseWheelEvent(const base::NativeEvent& native_event);
- explicit MouseWheelEvent(const MouseEvent& mouse_event);
explicit MouseWheelEvent(const ScrollEvent& scroll_event);
template <class T>
« no previous file with comments | « no previous file | ui/base/event.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698