// 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. #ifndef SERVICES_AUDIO_USER_INPUT_MONITOR_H_ #define SERVICES_AUDIO_USER_INPUT_MONITOR_H_ #include <memory> #include "base/memory/read_only_shared_memory_region.h" #include "media/base/user_input_monitor.h" namespace audio { // TODO(crbug.com/40573245) remove inheritance after switching to audio // service input streams. class UserInputMonitor : public media::UserInputMonitor { … }; } // namespace audio #endif // SERVICES_AUDIO_USER_INPUT_MONITOR_H_