| Index: webkit/media/audio_decoder_android.cc
|
| diff --git a/webkit/media/audio_decoder_android.cc b/webkit/media/audio_decoder_android.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..474e083c2dcb473f617dfb40e40cdf6504322fc7
|
| --- /dev/null
|
| +++ b/webkit/media/audio_decoder_android.cc
|
| @@ -0,0 +1,17 @@
|
| +// 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 "webkit/media/audio_decoder.h"
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +namespace webkit_media {
|
| +
|
| +bool DecodeAudioFileData(WebKit::WebAudioBus* destination_bus, const char* data,
|
| + size_t data_size, double sample_rate) {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| +} // namespace webkit_glue
|
|
|