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

Unified Diff: webrtc/voice_engine/test/auto_test/fixtures/after_streaming_fixture.h

Issue 1723153002: Remove the VoEDtmf interface. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 4 years, 9 months 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: 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_

Powered by Google App Engine
This is Rietveld 408576698