Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Unified Diff: remoting/host/audio_capturer_mac.cc

Issue 10911271: Remove CommandLine dependency from the Linux's AudioCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/audio_capturer_mac.cc
diff --git a/remoting/host/audio_capturer_mac.cc b/remoting/host/audio_capturer_mac.cc
index 1db67c25a05954fd8916cea9f62c3a61224bc28d..a00acf491b7b5b33a1cebbd33c08561398cedfde 100644
--- a/remoting/host/audio_capturer_mac.cc
+++ b/remoting/host/audio_capturer_mac.cc
@@ -7,11 +7,12 @@
namespace remoting {
-bool AudioCapturer::IsSupported() {
+bool AudioCapturer::IsSupported(ChromotingHostContext* context) {
return false;
}
-scoped_ptr<AudioCapturer> AudioCapturer::Create() {
+scoped_ptr<AudioCapturer> AudioCapturer::Create(
+ ChromotingHostContext* context) {
NOTIMPLEMENTED();
return scoped_ptr<AudioCapturer>(NULL);
}

Powered by Google App Engine
This is Rietveld 408576698