| Index: gpu/command_buffer/service/vertex_array_manager_unittest.cc
|
| diff --git a/gpu/command_buffer/service/vertex_array_manager_unittest.cc b/gpu/command_buffer/service/vertex_array_manager_unittest.cc
|
| index 0d3d1d0a9d0efebdd04c5351086b29430ddafa01..73f9bc7e20705332db503a1817cd4e573b406bef 100644
|
| --- a/gpu/command_buffer/service/vertex_array_manager_unittest.cc
|
| +++ b/gpu/command_buffer/service/vertex_array_manager_unittest.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "gpu/command_buffer/service/vertex_array_manager.h"
|
| #include "gpu/command_buffer/service/vertex_attrib_manager.h"
|
|
|
| @@ -20,7 +22,7 @@ namespace gles2 {
|
|
|
| class VertexArrayManagerTest : public GpuServiceTest {
|
| public:
|
| - static const uint32 kNumVertexAttribs = 8;
|
| + static const uint32_t kNumVertexAttribs = 8;
|
|
|
| VertexArrayManagerTest() {
|
| }
|
| @@ -43,7 +45,7 @@ class VertexArrayManagerTest : public GpuServiceTest {
|
|
|
| // GCC requires these declarations, but MSVC requires they not be present
|
| #ifndef COMPILER_MSVC
|
| -const uint32 VertexArrayManagerTest::kNumVertexAttribs;
|
| +const uint32_t VertexArrayManagerTest::kNumVertexAttribs;
|
| #endif
|
|
|
| TEST_F(VertexArrayManagerTest, Basic) {
|
|
|