Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Unified Diff: chrome/browser/component_updater/test/cld_component_installer_unittest.cc

Issue 590333002: Replace usage of basictypes.h with a combination of stdint.h and base/macros.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
}

Powered by Google App Engine
This is Rietveld 408576698