| Index: ppapi/tests/test_media_stream_audio_track.h
|
| diff --git a/ppapi/tests/test_media_stream_video_track.h b/ppapi/tests/test_media_stream_audio_track.h
|
| similarity index 52%
|
| copy from ppapi/tests/test_media_stream_video_track.h
|
| copy to ppapi/tests/test_media_stream_audio_track.h
|
| index 308e925e372b4683784790b60ec0140ee912f12c..f9ea526236206bb0641fd3d4b315fefe0e2ef5f9 100644
|
| --- a/ppapi/tests/test_media_stream_video_track.h
|
| +++ b/ppapi/tests/test_media_stream_audio_track.h
|
| @@ -2,19 +2,19 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef PAPPI_TESTS_TEST_MEDIA_STREAM_VIDEO_TRACK_H_
|
| -#define PAPPI_TESTS_TEST_MEDIA_STREAM_VIDEO_TRACK_H_
|
| +#ifndef PAPPI_TESTS_TEST_MEDIA_STREAM_AUDIO_TRACK_H_
|
| +#define PAPPI_TESTS_TEST_MEDIA_STREAM_AUDIO_TRACK_H_
|
|
|
| #include <string>
|
|
|
| -#include "ppapi/cpp/media_stream_video_track.h"
|
| +#include "ppapi/cpp/media_stream_audio_track.h"
|
| #include "ppapi/cpp/video_frame.h"
|
| #include "ppapi/tests/test_case.h"
|
|
|
| -class TestMediaStreamVideoTrack : public TestCase {
|
| +class TestMediaStreamAudioTrack : public TestCase {
|
| public:
|
| - explicit TestMediaStreamVideoTrack(TestingInstance* instance);
|
| - virtual ~TestMediaStreamVideoTrack();
|
| + explicit TestMediaStreamAudioTrack(TestingInstance* instance);
|
| + virtual ~TestMediaStreamAudioTrack();
|
|
|
| private:
|
| // TestCase implementation.
|
| @@ -25,12 +25,11 @@ class TestMediaStreamVideoTrack : public TestCase {
|
| virtual void HandleMessage(const pp::Var& message_data);
|
|
|
| std::string TestCreate();
|
| - std::string TestGetFrame();
|
| - std::string TestConfigure();
|
| + std::string TestGetBuffer();
|
|
|
| - pp::MediaStreamVideoTrack video_track_;
|
| + pp::MediaStreamAudioTrack audio_track_;
|
|
|
| NestedEvent event_;
|
| };
|
|
|
| -#endif // PAPPI_TESTS_TEST_MEDIA_STREAM_VIDEO_TRACK_H_
|
| +#endif // PAPPI_TESTS_TEST_MEDIA_STREAM_AUDIO_TRACK_H_
|
|
|