Index: chrome/browser/component_updater/test/cld_component_installer_unittest.cc |
diff --git a/chrome/browser/component_updater/test/cld_component_installer_unittest.cc b/chrome/browser/component_updater/test/cld_component_installer_unittest.cc |
index 1a1624113f78e3e34545e6c2599cb0582f3ccc43..f3f4beecf23d3783d85cd2ffcb6a1b0ff99ee136 100644 |
--- a/chrome/browser/component_updater/test/cld_component_installer_unittest.cc |
+++ b/chrome/browser/component_updater/test/cld_component_installer_unittest.cc |
@@ -2,6 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include <stdint.h> |
#include <vector> |
#include "base/files/file_path.h" |
@@ -101,7 +102,7 @@ TEST_F(CldComponentInstallerTest, GetBaseDirectory) { |
} |
TEST_F(CldComponentInstallerTest, GetHash) { |
- std::vector<uint8> hash; |
+ std::vector<uint8_t> hash; |
traits_.GetHash(&hash); |
ASSERT_EQ(static_cast<size_t>(32), hash.size()); |
} |