Index: remoting/client/client_status_logger_unittest.cc |
diff --git a/remoting/client/client_status_logger_unittest.cc b/remoting/client/client_status_logger_unittest.cc |
index 0660fdc7d5d157c4369891ebe7a3cab9dc948e0c..5332a9c33a0d559173878a36638709124f9a8dda 100644 |
--- a/remoting/client/client_status_logger_unittest.cc |
+++ b/remoting/client/client_status_logger_unittest.cc |
@@ -5,7 +5,6 @@ |
#include "remoting/client/client_status_logger.h" |
#include "base/message_loop/message_loop.h" |
-#include "base/message_loop/message_loop_proxy.h" |
#include "remoting/client/chromoting_stats.h" |
#include "remoting/signaling/mock_signal_strategy.h" |
#include "remoting/signaling/server_log_entry_unittest.h" |
@@ -68,7 +67,6 @@ class ClientStatusLoggerTest : public testing::Test { |
void SetUp() override { |
EXPECT_CALL(signal_strategy_, AddListener(_)); |
EXPECT_CALL(signal_strategy_, RemoveListener(_)); |
- message_loop_proxy_ = base::MessageLoopProxy::current(); |
client_status_logger_.reset( |
new ClientStatusLogger(ServerLogEntry::ME2ME, |
&signal_strategy_, |
@@ -77,7 +75,6 @@ class ClientStatusLoggerTest : public testing::Test { |
protected: |
base::MessageLoop message_loop_; |
- scoped_refptr<base::MessageLoopProxy> message_loop_proxy_; |
MockSignalStrategy signal_strategy_; |
scoped_ptr<ClientStatusLogger> client_status_logger_; |
}; |