| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2008, The Android Open Source Project | 2 * Copyright 2008, The Android Open Source Project |
| 3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. | 3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above copyright | 10 * * Redistributions in binary form must reproduce the above copyright |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 TouchList* changedTouches() const { return m_changedTouches.get(); } | 63 TouchList* changedTouches() const { return m_changedTouches.get(); } |
| 64 | 64 |
| 65 void setTouches(PassRefPtr<TouchList> touches) { m_touches = touches; } | 65 void setTouches(PassRefPtr<TouchList> touches) { m_touches = touches; } |
| 66 void setTargetTouches(PassRefPtr<TouchList> targetTouches) { m_targetTouches
= targetTouches; } | 66 void setTargetTouches(PassRefPtr<TouchList> targetTouches) { m_targetTouches
= targetTouches; } |
| 67 void setChangedTouches(PassRefPtr<TouchList> changedTouches) { m_changedTouc
hes = changedTouches; } | 67 void setChangedTouches(PassRefPtr<TouchList> changedTouches) { m_changedTouc
hes = changedTouches; } |
| 68 | 68 |
| 69 virtual bool isTouchEvent() const OVERRIDE; | 69 virtual bool isTouchEvent() const OVERRIDE; |
| 70 | 70 |
| 71 virtual const AtomicString& interfaceName() const OVERRIDE; | 71 virtual const AtomicString& interfaceName() const OVERRIDE; |
| 72 | 72 |
| 73 virtual void trace(Visitor*) OVERRIDE; |
| 74 |
| 73 private: | 75 private: |
| 74 TouchEvent(); | 76 TouchEvent(); |
| 75 TouchEvent(TouchList* touches, TouchList* targetTouches, | 77 TouchEvent(TouchList* touches, TouchList* targetTouches, |
| 76 TouchList* changedTouches, const AtomicString& type, | 78 TouchList* changedTouches, const AtomicString& type, |
| 77 PassRefPtr<AbstractView>, int screenX, int screenY, int pageX, | 79 PassRefPtr<AbstractView>, int screenX, int screenY, int pageX, |
| 78 int pageY, | 80 int pageY, |
| 79 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); | 81 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); |
| 80 | 82 |
| 81 RefPtr<TouchList> m_touches; | 83 RefPtr<TouchList> m_touches; |
| 82 RefPtr<TouchList> m_targetTouches; | 84 RefPtr<TouchList> m_targetTouches; |
| 83 RefPtr<TouchList> m_changedTouches; | 85 RefPtr<TouchList> m_changedTouches; |
| 84 }; | 86 }; |
| 85 | 87 |
| 86 class TouchEventDispatchMediator FINAL : public EventDispatchMediator { | 88 class TouchEventDispatchMediator FINAL : public EventDispatchMediator { |
| 87 public: | 89 public: |
| 88 static PassRefPtr<TouchEventDispatchMediator> create(PassRefPtr<TouchEvent>)
; | 90 static PassRefPtr<TouchEventDispatchMediator> create(PassRefPtr<TouchEvent>)
; |
| 89 | 91 |
| 90 private: | 92 private: |
| 91 explicit TouchEventDispatchMediator(PassRefPtr<TouchEvent>); | 93 explicit TouchEventDispatchMediator(PassRefPtr<TouchEvent>); |
| 92 TouchEvent* event() const; | 94 TouchEvent* event() const; |
| 93 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; | 95 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; |
| 94 }; | 96 }; |
| 95 | 97 |
| 96 DEFINE_EVENT_TYPE_CASTS(TouchEvent); | 98 DEFINE_EVENT_TYPE_CASTS(TouchEvent); |
| 97 | 99 |
| 98 } // namespace WebCore | 100 } // namespace WebCore |
| 99 | 101 |
| 100 #endif // TouchEvent_h | 102 #endif // TouchEvent_h |
| OLD | NEW |