| Index: sandbox/win/src/policy_engine_unittest.cc
|
| diff --git a/sandbox/win/src/policy_engine_unittest.cc b/sandbox/win/src/policy_engine_unittest.cc
|
| index 325a101dac56bdacc236460f9911e973d0cab3cf..5572bdcd300ae522bea0c3e50acd783cf3922625 100644
|
| --- a/sandbox/win/src/policy_engine_unittest.cc
|
| +++ b/sandbox/win/src/policy_engine_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 "sandbox/win/src/policy_engine_params.h"
|
| #include "sandbox/win/src/policy_engine_processor.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -61,8 +64,8 @@ TEST(PolicyEngineTest, Rules1) {
|
| policy->opcode_count = 7;
|
|
|
| const wchar_t* filename = L"c:\\Documents and Settings\\Microsoft\\BLAH.txt";
|
| - uint32 creation_mode = OPEN_EXISTING;
|
| - uint32 flags = FILE_ATTRIBUTE_NORMAL;
|
| + uint32_t creation_mode = OPEN_EXISTING;
|
| + uint32_t flags = FILE_ATTRIBUTE_NORMAL;
|
| void* security_descriptor = NULL;
|
|
|
| POLPARAMS_BEGIN(eval_params)
|
|
|