| Index: chrome/browser/chromeos/policy/power_policy_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/policy/power_policy_browsertest.cc b/chrome/browser/chromeos/policy/power_policy_browsertest.cc
|
| index 5b5aee0e7465cf3b1e07a799498926edc5c9e6ad..4f95ae9b00056fc679c1f1142cd6a0fa0b80a820 100644
|
| --- a/chrome/browser/chromeos/policy/power_policy_browsertest.cc
|
| +++ b/chrome/browser/chromeos/policy/power_policy_browsertest.cc
|
| @@ -2,10 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| #include "base/command_line.h"
|
| @@ -13,6 +14,7 @@
|
| #include "base/files/file_path.h"
|
| #include "base/files/file_util.h"
|
| #include "base/location.h"
|
| +#include "base/macros.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/path_service.h"
|
| #include "base/run_loop.h"
|
| @@ -208,7 +210,7 @@ void PowerPolicyBrowserTestBase::InstallUserKey() {
|
| base::FilePath user_key_file =
|
| user_keys_dir.AppendASCII(sanitized_username)
|
| .AppendASCII("policy.pub");
|
| - std::vector<uint8> user_key_bits;
|
| + std::vector<uint8_t> user_key_bits;
|
| ASSERT_TRUE(user_policy_.GetSigningKey()->ExportPublicKey(&user_key_bits));
|
| ASSERT_TRUE(base::CreateDirectory(user_key_file.DirName()));
|
| ASSERT_EQ(base::WriteFile(
|
|
|