chromium/ui/events/keyboard_event_counter.cc

// Copyright 2013 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/keyboard_event_counter.h"

#include "base/check_op.h"

namespace ui {

KeyboardEventCounter::KeyboardEventCounter() :{}

KeyboardEventCounter::~KeyboardEventCounter() = default;

void KeyboardEventCounter::OnKeyboardEvent(EventType event,
                                           KeyboardCode key_code) {}

uint32_t KeyboardEventCounter::GetKeyPressCount() const {}

}  // namespace ui