summaryrefslogtreecommitdiffstats
path: root/remoting/base
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-10 01:25:05 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-10 01:25:05 +0000
commitefbee203138ec32c209706ac5d31faa1c03e6a23 (patch)
treed840d8a79efffe4e37a96c92b313461ef2dd326f /remoting/base
parent7e30f6468bd77634a4397e59e9a4e04bda6f7129 (diff)
downloadchromium_src-efbee203138ec32c209706ac5d31faa1c03e6a23.zip
chromium_src-efbee203138ec32c209706ac5d31faa1c03e6a23.tar.gz
chromium_src-efbee203138ec32c209706ac5d31faa1c03e6a23.tar.bz2
Cleanup: IWYU for base/time.h. Also fix misc lint errors.
TBR=ben,brettw,oshima,rdsmith Review URL: https://chromiumcodereview.appspot.com/11087021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160999 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/base')
-rw-r--r--remoting/base/running_average.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/remoting/base/running_average.h b/remoting/base/running_average.h
index fadea1f..bc556b9 100644
--- a/remoting/base/running_average.h
+++ b/remoting/base/running_average.h
@@ -17,7 +17,6 @@
#include "base/basictypes.h"
#include "base/synchronization/lock.h"
-#include "base/time.h"
namespace remoting {
@@ -25,7 +24,7 @@ class RunningAverage {
public:
// Construct a running average counter for a specific window size. The
// |windows_size| most recent values are kept and the average is reported.
- RunningAverage(int window_size);
+ explicit RunningAverage(int window_size);
virtual ~RunningAverage();