diff options
Diffstat (limited to 'remoting/host/heartbeat_sender.cc')
-rw-r--r-- | remoting/host/heartbeat_sender.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/remoting/host/heartbeat_sender.cc b/remoting/host/heartbeat_sender.cc index e8dacd2..16ec93e 100644 --- a/remoting/host/heartbeat_sender.cc +++ b/remoting/host/heartbeat_sender.cc @@ -106,7 +106,8 @@ void HeartbeatSender::DoSendStanza() { ++sequence_id_; } -void HeartbeatSender::ProcessResponse(const XmlElement* response) { +void HeartbeatSender::ProcessResponse(IqRequest* request, + const XmlElement* response) { std::string type = response->Attr(buzz::QN_TYPE); if (type == buzz::STR_ERROR) { const XmlElement* error_element = |