Chromium Code Reviews| Index: webrtc/voice_engine/test/auto_test/fixtures/after_streaming_fixture.h |
| diff --git a/webrtc/voice_engine/test/auto_test/fixtures/after_streaming_fixture.h b/webrtc/voice_engine/test/auto_test/fixtures/after_streaming_fixture.h |
| index f81716fab3d27e2d3ed40b83953b46bab5b6224c..0c860d29c193271058bbfd86215815f30c51e8fb 100644 |
| --- a/webrtc/voice_engine/test/auto_test/fixtures/after_streaming_fixture.h |
| +++ b/webrtc/voice_engine/test/auto_test/fixtures/after_streaming_fixture.h |
| @@ -11,7 +11,9 @@ |
| #ifndef SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_AFTER_STREAMING_H_ |
| #define SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_AFTER_STREAMING_H_ |
| +#include "webrtc/base/scoped_ptr.h" |
| #include "webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.h" |
| +#include "webrtc/voice_engine/channel_proxy.h" |
|
hlundin-webrtc
2016/03/07 15:59:22
Order of includes...
the sun
2016/03/07 16:11:35
Done. Also replaced scoped_ptr with unique_ptr.
|
| // This fixture will, in addition to the work done by its superclasses, |
| // start play back on construction. |
| @@ -19,6 +21,9 @@ class AfterStreamingFixture : public BeforeStreamingFixture { |
| public: |
| AfterStreamingFixture(); |
| virtual ~AfterStreamingFixture() {} |
| + |
| + protected: |
| + rtc::scoped_ptr<webrtc::voe::ChannelProxy> channel_proxy_; |
| }; |
| #endif // SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_AFTER_STREAMING_H_ |