summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/events/touch_event_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/events/touch_event_context.h')
-rw-r--r--chromium/third_party/blink/renderer/core/events/touch_event_context.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/events/touch_event_context.h b/chromium/third_party/blink/renderer/core/events/touch_event_context.h
index 3288741736a..b3ef5037392 100644
--- a/chromium/third_party/blink/renderer/core/events/touch_event_context.h
+++ b/chromium/third_party/blink/renderer/core/events/touch_event_context.h
@@ -36,8 +36,6 @@ class TouchList;
class TouchEventContext : public GarbageCollected<TouchEventContext> {
public:
- static TouchEventContext* Create();
-
TouchEventContext();
void HandleLocalEvents(Event&) const;
@@ -45,7 +43,7 @@ class TouchEventContext : public GarbageCollected<TouchEventContext> {
TouchList& TargetTouches() { return *target_touches_; }
TouchList& ChangedTouches() { return *changed_touches_; }
- void Trace(blink::Visitor*);
+ void Trace(Visitor*);
private:
Member<TouchList> touches_;