audio_capturer_chromeos.cc 438 B

12345678910111213141516171819
  1. // Copyright 2017 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. #include "base/notreached.h"
  5. #include "remoting/host/audio_capturer.h"
  6. namespace remoting {
  7. bool AudioCapturer::IsSupported() {
  8. return false;
  9. }
  10. std::unique_ptr<AudioCapturer> AudioCapturer::Create() {
  11. NOTIMPLEMENTED();
  12. return nullptr;
  13. }
  14. } // namespace remoting