| Index: remoting/base/rate_counter_unittest.cc
|
| diff --git a/remoting/base/rate_counter_unittest.cc b/remoting/base/rate_counter_unittest.cc
|
| index cf5962dfed7060e4616c77770bf3aa4b1323ffda..91b91c511ad06e9778cc5dc2a24a794d52e7f5fe 100644
|
| --- a/remoting/base/rate_counter_unittest.cc
|
| +++ b/remoting/base/rate_counter_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/rate_counter.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 };
|
|
|
| // One second window and one sample per second, so rate equals each sample.
|
| TEST(RateCounterTest, OneSecondWindow) {
|
|
|