diff options
Diffstat (limited to 'remoting/jingle_glue')
-rw-r--r-- | remoting/jingle_glue/jingle_thread.h | 4 | ||||
-rw-r--r-- | remoting/jingle_glue/xmpp_socket_adapter.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/remoting/jingle_glue/jingle_thread.h b/remoting/jingle_glue/jingle_thread.h index 139b053..bd60879 100644 --- a/remoting/jingle_glue/jingle_thread.h +++ b/remoting/jingle_glue/jingle_thread.h @@ -42,10 +42,10 @@ class JingleThread : public talk_base::Thread, void Start(); // Main function for the thread. Should not be called directly. - void Run(); + virtual void Run(); // Stop the thread. - void Stop(); + virtual void Stop(); // Returns Chromiums message loop for this thread. // TODO(sergeyu): remove this method when we use base::Thread instead of diff --git a/remoting/jingle_glue/xmpp_socket_adapter.h b/remoting/jingle_glue/xmpp_socket_adapter.h index 18376b1..42493f9a 100644 --- a/remoting/jingle_glue/xmpp_socket_adapter.h +++ b/remoting/jingle_glue/xmpp_socket_adapter.h @@ -39,7 +39,7 @@ class XmppSocketAdapter : public buzz::AsyncSocket, virtual bool Close(); #if defined(FEATURE_ENABLE_SSL) - bool StartTls(const std::string& domainname); + virtual bool StartTls(const std::string& domainname); bool IsOpen() const { return state_ == STATE_OPEN || state_ == STATE_TLS_OPEN; } #else |