loopback_coordinator.h 516 B

123456789101112131415
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef SERVICES_AUDIO_LOOPBACK_COORDINATOR_H_
  5. #define SERVICES_AUDIO_LOOPBACK_COORDINATOR_H_
  6. #include "services/audio/group_coordinator.h"
  7. #include "services/audio/loopback_group_member.h"
  8. namespace audio {
  9. using LoopbackCoordinator = GroupCoordinator<LoopbackGroupMember>;
  10. } // namespace audio
  11. #endif // SERVICES_AUDIO_LOOPBACK_COORDINATOR_H_