Index: remoting/host/host_status_sender_unittest.cc |
diff --git a/remoting/host/host_status_sender_unittest.cc b/remoting/host/host_status_sender_unittest.cc |
index 11da627e57ce6bb6ae42758cfe84699232d0ac56..b8ffcf3f3990570ef1a3932271c7889acffed985 100644 |
--- a/remoting/host/host_status_sender_unittest.cc |
+++ b/remoting/host/host_status_sender_unittest.cc |
@@ -7,6 +7,7 @@ |
#include "base/strings/string_number_conversions.h" |
#include "base/time/time.h" |
#include "remoting/base/constants.h" |
+#include "remoting/base/logging.h" |
#include "remoting/base/rsa_key_pair.h" |
#include "remoting/base/test_rsa_key_pair.h" |
#include "remoting/host/host_exit_codes.h" |
@@ -87,7 +88,7 @@ TEST_F(HostStatusSenderTest, SendOnlineStatus) { |
scoped_ptr<XmlElement> stanza(sent_iq); |
ASSERT_TRUE(stanza != NULL); |
- LOG(INFO) << stanza->Str(); |
+ LOG_INFO << stanza->Str(); |
ValidateHostStatusStanza(stanza.get(), HostStatusSender::ONLINE); |
} |
@@ -116,7 +117,7 @@ TEST_F(HostStatusSenderTest, SendOfflineStatus) { |
scoped_ptr<XmlElement> stanza(sent_iq); |
ASSERT_TRUE(stanza != NULL); |
- LOG(INFO) << stanza->Str(); |
+ LOG_INFO << stanza->Str(); |
ValidateHostStatusStanza(stanza.get(), HostStatusSender::OFFLINE); |
} |
@@ -194,7 +195,7 @@ void HostStatusSenderTest::ValidateSignature( |
EXPECT_EQ(expected_signature, signature->BodyText()); |
int64 now = static_cast<int64>(base::Time::Now().ToDoubleT()); |
- LOG(INFO) << "SendHostStatus took " << now - time << " seconds."; |
+ LOG_INFO << "SendHostStatus took " << now - time << " seconds."; |
} |
} // namespace remoting |