summaryrefslogtreecommitdiffstats
path: root/aura/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'aura/event.h')
-rw-r--r--aura/event.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/aura/event.h b/aura/event.h
index be08345..27a8f30 100644
--- a/aura/event.h
+++ b/aura/event.h
@@ -21,8 +21,6 @@ typedef union _XEvent XEvent;
typedef XEvent* NativeEvent;
#endif
-class Window;
-
class Event {
public:
const NativeEvent& native_event() const { return native_event_; }
@@ -57,11 +55,6 @@ class LocatedEvent : public Event {
protected:
explicit LocatedEvent(NativeEvent native_event);
- // Create a new LocatedEvent which is identical to the provided model.
- // If source / target windows are provided, the model location will be
- // converted from |source| coordinate system to |target| coordinate system.
- LocatedEvent(const LocatedEvent& model, Window* source, Window* target);
-
gfx::Point location_;
private:
@@ -72,11 +65,6 @@ class MouseEvent : public LocatedEvent {
public:
explicit MouseEvent(NativeEvent native_event);
- // Create a new MouseEvent which is identical to the provided model.
- // If source / target windows are provided, the model location will be
- // converted from |source| coordinate system to |target| coordinate system.
- MouseEvent(const MouseEvent& model, Window* source, Window* target);
-
private:
DISALLOW_COPY_AND_ASSIGN(MouseEvent);
};