Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Unified Diff: remoting/jingle_glue/signal_strategy.h

Issue 10855076: Clean-up inline members of nested classes (remoting/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: And try not to break the gyp file Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/signaling_connector.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/jingle_glue/signal_strategy.h
diff --git a/remoting/jingle_glue/signal_strategy.h b/remoting/jingle_glue/signal_strategy.h
index 065127224180dd823fb61aa58d5b81e66ff0dc6a..206edc0dec09bc7e400313ec2fecbfbf472b22dd 100644
--- a/remoting/jingle_glue/signal_strategy.h
+++ b/remoting/jingle_glue/signal_strategy.h
@@ -46,13 +46,13 @@ class SignalStrategy {
// Called after state of the connection has changed. If the state
// is DISCONNECTED, then GetError() can be used to get the reason
// for the disconnection.
- virtual void OnSignalStrategyStateChange(State state) {}
+ virtual void OnSignalStrategyStateChange(State state) = 0;
// Must return true if the stanza was handled, false
// otherwise. The signal strategy must not be deleted from a
// handler of this message.
virtual bool OnSignalStrategyIncomingStanza(
- const buzz::XmlElement* stanza) { return false; }
+ const buzz::XmlElement* stanza) = 0;
};
SignalStrategy() {}
« no previous file with comments | « remoting/host/signaling_connector.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698