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

Unified Diff: remoting/jingle_glue/jingle_thread.h

Issue 8601011: Add OVERRIDE to remoting/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/jingle_glue/javascript_signal_strategy.h ('k') | remoting/jingle_glue/ssl_socket_adapter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/jingle_glue/jingle_thread.h
diff --git a/remoting/jingle_glue/jingle_thread.h b/remoting/jingle_glue/jingle_thread.h
index aa6915305bf9e93eaec9237ae3f47b4a4c306d53..e78d2486e43555cbf33f20ab5b6c8f620cd5f99c 100644
--- a/remoting/jingle_glue/jingle_thread.h
+++ b/remoting/jingle_glue/jingle_thread.h
@@ -24,11 +24,11 @@ class TaskPump : public talk_base::MessageHandler,
TaskPump();
// TaskRunner methods.
- virtual void WakeTasks();
- virtual int64 CurrentTime();
+ virtual void WakeTasks() OVERRIDE;
+ virtual int64 CurrentTime() OVERRIDE;
// MessageHandler methods.
- virtual void OnMessage(talk_base::Message* pmsg);
+ virtual void OnMessage(talk_base::Message* pmsg) OVERRIDE;
};
class JingleThreadMessageLoop : public MessageLoop {
@@ -50,10 +50,10 @@ class JingleThread : public talk_base::Thread {
void Start();
// Main function for the thread. Should not be called directly.
- virtual void Run();
+ virtual void Run() OVERRIDE;
// Stop the thread.
- virtual void Stop();
+ virtual void Stop() OVERRIDE;
// Returns Chromiums message loop for this thread.
MessageLoop* message_loop();
« no previous file with comments | « remoting/jingle_glue/javascript_signal_strategy.h ('k') | remoting/jingle_glue/ssl_socket_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698