| Index: remoting/base/running_average_unittest.cc
|
| diff --git a/remoting/base/running_average_unittest.cc b/remoting/base/running_average_unittest.cc
|
| index 709abd6ec1596d34a5cfda63b72766bd554cb4fb..e731573fda67af84efea934a0dc11e07ac0be565 100644
|
| --- a/remoting/base/running_average_unittest.cc
|
| +++ b/remoting/base/running_average_unittest.cc
|
| @@ -2,12 +2,16 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "remoting/base/running_average.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace remoting {
|
|
|
| -static const int64 kTestValues[] = { 10, 20, 30, 10, 25, 16, 15 };
|
| +static const int64_t kTestValues[] = { 10, 20, 30, 10, 25, 16, 15 };
|
|
|
| // Average across a single element, i.e. just return the most recent.
|
| TEST(RunningAverageTest, OneElementWindow) {
|
|
|