1b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org/*
2b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *  Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *
4b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *  Use of this source code is governed by a BSD-style license
5b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *  that can be found in the LICENSE file in the root of the source
6b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *  tree. An additional intellectual property rights grant can be found
7b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *  in the file PATENTS.  All contributing project authors may
8b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *  be found in the AUTHORS file in the root of the source tree.
9b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org */
10b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org
11b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org#ifndef SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_AFTER_STREAMING_H_
12b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org#define SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_AFTER_STREAMING_H_
13b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org
148a557b553f928b73ae86781ef5d9405ce212d847solenberg@webrtc.org#include "webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.h"
15b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org
16b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org// This fixture will, in addition to the work done by its superclasses,
178a557b553f928b73ae86781ef5d9405ce212d847solenberg@webrtc.org// start play back on construction.
188a557b553f928b73ae86781ef5d9405ce212d847solenberg@webrtc.orgclass AfterStreamingFixture : public BeforeStreamingFixture {
19b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org public:
20b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org  AfterStreamingFixture();
218a557b553f928b73ae86781ef5d9405ce212d847solenberg@webrtc.org  virtual ~AfterStreamingFixture() {}
22b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org};
23b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org
24b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org#endif  // SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_AFTER_STREAMING_H_
25