chromium/services/audio/user_input_monitor.cc

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

#include "services/audio/user_input_monitor.h"

#include <utility>

#include "media/base/media_switches.h"

namespace audio {

// static
std::unique_ptr<UserInputMonitor> UserInputMonitor::Create(
    base::ReadOnlySharedMemoryRegion memory) {}

UserInputMonitor::UserInputMonitor(
    base::ReadOnlySharedMemoryMapping memory_mapping)
    :{}

UserInputMonitor::~UserInputMonitor() = default;

void UserInputMonitor::EnableKeyPressMonitoring() {}

void UserInputMonitor::DisableKeyPressMonitoring() {}

uint32_t UserInputMonitor::GetKeyPressCount() const {}

}  // namespace audio