chromium/ui/events/velocity_tracker/motion_event.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 "ui/events/velocity_tracker/motion_event.h"

#include <ostream>

#include "base/notreached.h"
#include "ui/events/velocity_tracker/motion_event_generic.h"

namespace ui {

size_t MotionEvent::GetHistorySize() const {}

base::TimeTicks MotionEvent::GetHistoricalEventTime(
    size_t historical_index) const {}

base::TimeTicks MotionEvent::GetLatestEventTime() const {}

float MotionEvent::GetHistoricalTouchMajor(size_t pointer_index,
                                           size_t historical_index) const {}

float MotionEvent::GetHistoricalX(size_t pointer_index,
                                  size_t historical_index) const {}

float MotionEvent::GetHistoricalY(size_t pointer_index,
                                  size_t historical_index) const {}

MotionEvent::Classification MotionEvent::GetClassification() const {}

int MotionEvent::FindPointerIndexOfId(int id) const {}

int MotionEvent::GetSourceDeviceId(size_t pointer_index) const {}

std::unique_ptr<MotionEvent> MotionEvent::Clone() const {}

std::unique_ptr<MotionEvent> MotionEvent::Cancel() const {}

std::ostream& operator<<(std::ostream& stream,
                         const MotionEvent::Action action) {}
std::ostream& operator<<(std::ostream& stream,
                         const MotionEvent::ToolType tool_type) {}

}  // namespace ui