From 0193158634c99ba8a0e7febf7f543ff909ca433c Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Wed, 31 Jul 2013 15:18:19 +0000 Subject: [PATCH] Fix some chromium-style warnings in webrtc/modules/pacing/ BUG=163 R=pwestin@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1902005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4445 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/pacing/include/paced_sender.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/modules/pacing/include/paced_sender.h b/webrtc/modules/pacing/include/paced_sender.h index dc189154a..6b812878c 100644 --- a/webrtc/modules/pacing/include/paced_sender.h +++ b/webrtc/modules/pacing/include/paced_sender.h @@ -85,10 +85,10 @@ class PacedSender : public Module { // Returns the number of milliseconds until the module want a worker thread // to call Process. - virtual int32_t TimeUntilNextProcess(); + virtual int32_t TimeUntilNextProcess() OVERRIDE; // Process any pending packets in the queue(s). - virtual int32_t Process(); + virtual int32_t Process() OVERRIDE; private: // Return true if next packet in line should be transmitted.