chromium/components/input/web_touch_event_traits.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/input/web_touch_event_traits.h"

#include <stddef.h>

#include "base/check.h"
#include "base/notreached.h"
#include "third_party/blink/public/common/input/web_touch_event.h"

WebInputEvent;
WebTouchEvent;
WebTouchPoint;

namespace input {

bool WebTouchEventTraits::AllTouchPointsHaveState(
    const WebTouchEvent& event,
    blink::WebTouchPoint::State state) {}

void WebTouchEventTraits::ResetType(WebInputEvent::Type type,
                                    base::TimeTicks timestamp,
                                    WebTouchEvent* event) {}

void WebTouchEventTraits::ResetTypeAndTouchStates(WebInputEvent::Type type,
                                                  base::TimeTicks timestamp,
                                                  WebTouchEvent* event) {}

}  // namespace input