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

Unified Diff: media/audio/android/audio_track_output_stub_android.cc

Issue 8718014: Upstream: Media implementation for Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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: media/audio/android/audio_track_output_stub_android.cc
diff --git a/media/audio/android/audio_track_output_stub_android.cc b/media/audio/android/audio_track_output_stub_android.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b66447d9121d8997cacf028234d9249dc9246e8b
--- /dev/null
+++ b/media/audio/android/audio_track_output_stub_android.cc
@@ -0,0 +1,15 @@
+// Copyright (c) 2011 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 "media/audio/android/audio_track_output_android.h"
+
+// This file was added because there is no Java environment in
+// upstream yet, audio_track_output_android.cc should be used in
+// downstream.
John Grabowski 2011/11/29 19:43:31 Add TODO(michaelbai) to be clear we intend to fini
scherkus (not reviewing) 2011/11/29 20:00:28 is there a TODO or bug to reference here? I want
michaelbai 2011/11/30 17:20:34 Our current goal is make the media tests linked, e
+
+// static
+AudioOutputStream* AudioTrackOutputStream::MakeStream(
+ AudioManagerAndroid* manager, const AudioParameters& params) {
+ return NULL;
+}

Powered by Google App Engine
This is Rietveld 408576698