| Index: sql/sqlite_features_unittest.cc
|
| diff --git a/sql/sqlite_features_unittest.cc b/sql/sqlite_features_unittest.cc
|
| index db60072d5e4df1890d0ba714e40092dd84501105..9b8c97166455da1928819ffe367542a71bbb0a9e 100644
|
| --- a/sql/sqlite_features_unittest.cc
|
| +++ b/sql/sqlite_features_unittest.cc
|
| @@ -2,6 +2,9 @@
|
| // 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 <string>
|
|
|
| #include "base/bind.h"
|
| @@ -191,8 +194,8 @@ TEST_F(SQLiteFeaturesTest, Mmap) {
|
| }
|
| db().Close();
|
|
|
| - const uint32 kFlags =
|
| - base::File::FLAG_OPEN|base::File::FLAG_READ|base::File::FLAG_WRITE;
|
| + const uint32_t kFlags =
|
| + base::File::FLAG_OPEN | base::File::FLAG_READ | base::File::FLAG_WRITE;
|
| char buf[4096];
|
|
|
| // Create a file with a block of '0', a block of '1', and a block of '2'.
|
|
|