summaryrefslogtreecommitdiffstats
path: root/remoting/jingle_glue/signal_strategy.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/jingle_glue/signal_strategy.h')
-rw-r--r--remoting/jingle_glue/signal_strategy.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/remoting/jingle_glue/signal_strategy.h b/remoting/jingle_glue/signal_strategy.h
index 3d0a559..1f90d03 100644
--- a/remoting/jingle_glue/signal_strategy.h
+++ b/remoting/jingle_glue/signal_strategy.h
@@ -35,7 +35,8 @@ class SignalStrategy {
class Listener {
public:
- virtual void OnIncomingStanza(const buzz::XmlElement* stanza) = 0;
+ // Must return true if the stanza was handled, false otherwise.
+ virtual bool OnIncomingStanza(const buzz::XmlElement* stanza) = 0;
};
SignalStrategy() {}