Index: webrtc/api/proxy_unittest.cc |
diff --git a/webrtc/api/proxy_unittest.cc b/webrtc/api/proxy_unittest.cc |
index 193fb298a281ddd681ce0decb6cb057a3b1bafea..dbef586e5b8d05a5eead23576f3be6a31df4b88a 100644 |
--- a/webrtc/api/proxy_unittest.cc |
+++ b/webrtc/api/proxy_unittest.cc |
@@ -63,25 +63,27 @@ class Fake : public FakeInterface { |
// Proxies for the test interface. |
BEGIN_PROXY_MAP(Fake) |
+ PROXY_SIGNALING_THREAD_DESTRUCTOR() |
PROXY_METHOD0(void, VoidMethod0) |
PROXY_METHOD0(std::string, Method0) |
PROXY_CONSTMETHOD0(std::string, ConstMethod0) |
PROXY_WORKER_METHOD1(std::string, Method1, std::string) |
PROXY_CONSTMETHOD1(std::string, ConstMethod1, std::string) |
PROXY_WORKER_METHOD2(std::string, Method2, std::string, std::string) |
-END_PROXY() |
+END_PROXY_MAP() |
// Preprocessor hack to get a proxy class a name different than FakeProxy. |
#define FakeProxy FakeSignalingProxy |
#define FakeProxyWithInternal FakeSignalingProxyWithInternal |
BEGIN_SIGNALING_PROXY_MAP(Fake) |
+ PROXY_SIGNALING_THREAD_DESTRUCTOR() |
PROXY_METHOD0(void, VoidMethod0) |
PROXY_METHOD0(std::string, Method0) |
PROXY_CONSTMETHOD0(std::string, ConstMethod0) |
PROXY_METHOD1(std::string, Method1, std::string) |
PROXY_CONSTMETHOD1(std::string, ConstMethod1, std::string) |
PROXY_METHOD2(std::string, Method2, std::string, std::string) |
-END_SIGNALING_PROXY() |
+END_PROXY_MAP() |
#undef FakeProxy |
class SignalingProxyTest : public testing::Test { |
pthatcher1
2017/01/17 19:44:00
Is there a test of the new functionality you are a
Taylor Brandstetter
2017/01/18 01:17:14
Done. I only added a smoke test for the "owned pro
|