Index: remoting/jingle_glue/jingle_thread.h |
diff --git a/remoting/jingle_glue/jingle_thread.h b/remoting/jingle_glue/jingle_thread.h |
index 139b053646e3d63ccf15c26242089c8dc1ce938c..bd6087915609c6dcbdf9539e1b2d329f4fd39b15 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 |