From c172d6972b2886067fb65afe2e647afc0451f832 Mon Sep 17 00:00:00 2001 From: "hans@chromium.org" Date: Thu, 9 Aug 2012 22:18:21 +0000 Subject: Clean-up inline members of nested classes (remoting/) Due to a bug, the Clang-plugin style checker failed to warn about inline constructors, destructors, non-empty virtual methods, etc. for nested classes. The plugin has been fixed, and this patch is part of a clean-up of all the code that now causes the plugin to issue errors. BUG=139346 Review URL: https://chromiumcodereview.appspot.com/10855076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150913 0039d316-1c4b-4281-b951-d872f2087c98 --- remoting/host/heartbeat_sender.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'remoting/host/heartbeat_sender.cc') diff --git a/remoting/host/heartbeat_sender.cc b/remoting/host/heartbeat_sender.cc index 8fac219..ee63ffd5 100644 --- a/remoting/host/heartbeat_sender.cc +++ b/remoting/host/heartbeat_sender.cc @@ -88,6 +88,11 @@ void HeartbeatSender::OnSignalStrategyStateChange(SignalStrategy::State state) { } } +bool HeartbeatSender::OnSignalStrategyIncomingStanza( + const buzz::XmlElement* stanza) { + return false; +} + void HeartbeatSender::SendStanza() { DoSendStanza(); // Make sure we don't send another heartbeat before the heartbeat interval -- cgit v1.1