| Index: content/browser/renderer_host/input/web_touch_event_traits.cc
|
| diff --git a/content/browser/renderer_host/input/web_touch_event_traits.cc b/content/browser/renderer_host/input/web_touch_event_traits.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b2bc085a94818d138fa611b7b1f7437678336d3f
|
| --- /dev/null
|
| +++ b/content/browser/renderer_host/input/web_touch_event_traits.cc
|
| @@ -0,0 +1,27 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "content/browser/renderer_host/input/web_touch_event_traits.h"
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +using blink::WebInputEvent;
|
| +using blink::WebTouchEvent;
|
| +
|
| +namespace content {
|
| +
|
| +bool WebTouchEventTraits::IsTouchSequenceStart(const WebTouchEvent& event) {
|
| + if (event.type != WebInputEvent::TouchStart)
|
| + return false;
|
| + DCHECK(event.touchesLength);
|
| + if (!event.touchesLength)
|
| + return false;
|
| + for (size_t i = 0; i < event.touchesLength; i++) {
|
| + if (event.touches[i].state != blink::WebTouchPoint::StatePressed)
|
| + return false;
|
| + }
|
| + return true;
|
| +}
|
| +
|
| +} // namespace content
|
|
|