summaryrefslogtreecommitdiffstats
path: root/remoting/host/audio_capturer_mac.cc
diff options
context:
space:
mode:
authorkxing@chromium.org <kxing@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-19 23:35:54 +0000
committerkxing@chromium.org <kxing@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-19 23:35:54 +0000
commitc9bdcbdb323f5f7ca6d06f8c3e6426a9074d72b5 (patch)
treeeec9140ef758fec2523a8caca89925b21a976863 /remoting/host/audio_capturer_mac.cc
parent160524bad115a2e8a797bf516b83db757300b401 (diff)
downloadchromium_src-c9bdcbdb323f5f7ca6d06f8c3e6426a9074d72b5.zip
chromium_src-c9bdcbdb323f5f7ca6d06f8c3e6426a9074d72b5.tar.gz
chromium_src-c9bdcbdb323f5f7ca6d06f8c3e6426a9074d72b5.tar.bz2
Audio capture for Windows.
Review URL: https://chromiumcodereview.appspot.com/10782034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147566 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/audio_capturer_mac.cc')
-rw-r--r--remoting/host/audio_capturer_mac.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/remoting/host/audio_capturer_mac.cc b/remoting/host/audio_capturer_mac.cc
new file mode 100644
index 0000000..1901dfc
--- /dev/null
+++ b/remoting/host/audio_capturer_mac.cc
@@ -0,0 +1,15 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/logging.h"
+#include "remoting/host/audio_capturer.h"
+
+namespace remoting {
+
+scoped_ptr<AudioCapturer> AudioCapturer::Create() {
+ NOTIMPLEMENTED();
+ return scoped_ptr<AudioCapturer>(NULL);
+}
+
+} // namespace remoting