diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-09 22:18:21 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-09 22:18:21 +0000 |
commit | c172d6972b2886067fb65afe2e647afc0451f832 (patch) | |
tree | f882ad19a16245699576bf3de10708eb14528226 /remoting/host/log_to_server.cc | |
parent | 0034fcdedcb38e955264fde859e7c60edacca948 (diff) | |
download | chromium_src-c172d6972b2886067fb65afe2e647afc0451f832.zip chromium_src-c172d6972b2886067fb65afe2e647afc0451f832.tar.gz chromium_src-c172d6972b2886067fb65afe2e647afc0451f832.tar.bz2 |
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
Diffstat (limited to 'remoting/host/log_to_server.cc')
-rw-r--r-- | remoting/host/log_to_server.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/remoting/host/log_to_server.cc b/remoting/host/log_to_server.cc index c93bbd9..a184de0 100644 --- a/remoting/host/log_to_server.cc +++ b/remoting/host/log_to_server.cc @@ -66,6 +66,11 @@ void LogToServer::OnSignalStrategyStateChange(SignalStrategy::State state) { } } +bool LogToServer::OnSignalStrategyIncomingStanza( + const buzz::XmlElement* stanza) { + return false; +} + void LogToServer::OnClientConnected(const std::string& jid) { DCHECK(CalledOnValidThread()); LogSessionStateChange(jid, true); |