| Index: webrtc/api/proxy_unittest.cc
|
| diff --git a/webrtc/api/proxy_unittest.cc b/webrtc/api/proxy_unittest.cc
|
| index 85e5438076823fd96a85f0f1431bb2f090fac77a..d0093c4c16795b0a6e37874ecd33497324219c7f 100644
|
| --- a/webrtc/api/proxy_unittest.cc
|
| +++ b/webrtc/api/proxy_unittest.cc
|
| @@ -41,14 +41,14 @@ class FakeInterface : public rtc::RefCountInterface {
|
| };
|
|
|
| // Proxy for the test interface.
|
| -BEGIN_PROXY_MAP(Fake)
|
| +BEGIN_SIGNALLING_PROXY_MAP(Fake)
|
| 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_PROXY()
|
| +END_SIGNALLING_PROXY()
|
|
|
| // Implementation of the test interface.
|
| class Fake : public FakeInterface {
|
| @@ -83,7 +83,8 @@ class ProxyTest: public testing::Test {
|
| signaling_thread_.reset(new rtc::Thread());
|
| ASSERT_TRUE(signaling_thread_->Start());
|
| fake_ = Fake::Create();
|
| - fake_proxy_ = FakeProxy::Create(signaling_thread_.get(), fake_.get());
|
| + fake_proxy_ =
|
| + FakeSignallingProxy::Create(signaling_thread_.get(), fake_.get());
|
| }
|
|
|
| protected:
|
|
|