chromium/third_party/blink/renderer/platform/widget/input/compositor_thread_event_queue.cc

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

#include "third_party/blink/renderer/platform/widget/input/compositor_thread_event_queue.h"

#include "base/trace_event/trace_event.h"
#include "cc/metrics/event_metrics.h"
#include "third_party/blink/public/common/input/web_input_event_attribution.h"

namespace blink {

namespace {
// Sets |oldest_scroll_trace_id| or |oldest_pinch_trace_id| depending on the
// type of |event|.
void SetScrollOrPinchTraceId(EventWithCallback* event,
                             int64_t* oldest_scroll_trace_id,
                             int64_t* oldest_pinch_trace_id) {}

inline const WebGestureEvent& ToWebGestureEvent(const WebInputEvent& event) {}

bool IsContinuousGestureEvent(WebInputEvent::Type type) {}

}  // namespace

CompositorThreadEventQueue::CompositorThreadEventQueue() {}

CompositorThreadEventQueue::~CompositorThreadEventQueue() {}

void CompositorThreadEventQueue::Queue(
    std::unique_ptr<EventWithCallback> new_event) {}

std::unique_ptr<EventWithCallback> CompositorThreadEventQueue::Pop() {}

WebInputEvent::Type CompositorThreadEventQueue::PeekType() const {}

}  // namespace blink