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

Unified Diff: chrome/browser/chromeos/settings/device_oauth2_token_service_unittest.cc

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/chromeos/settings/device_oauth2_token_service_unittest.cc
diff --git a/chrome/browser/chromeos/settings/device_oauth2_token_service_unittest.cc b/chrome/browser/chromeos/settings/device_oauth2_token_service_unittest.cc
index 8460758880b8d22cf7c9cb505ed5bae42c0ea51b..21e70194ca8255eb7dc684e2d3110aba6fe65df1 100644
--- a/chrome/browser/chromeos/settings/device_oauth2_token_service_unittest.cc
+++ b/chrome/browser/chromeos/settings/device_oauth2_token_service_unittest.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/chromeos/settings/device_oauth2_token_service.h"
+#include <stdint.h>
+
#include "base/message_loop/message_loop.h"
#include "base/prefs/testing_pref_service.h"
#include "base/run_loop.h"
@@ -76,7 +78,7 @@ class DeviceOAuth2TokenServiceTest : public testing::Test {
}
void SetUpWithPendingSalt() {
- fake_cryptohome_client_->set_system_salt(std::vector<uint8>());
+ fake_cryptohome_client_->set_system_salt(std::vector<uint8_t>());
fake_cryptohome_client_->SetServiceIsAvailable(false);
SetUpDefaultValues();
}
@@ -334,7 +336,7 @@ TEST_F(DeviceOAuth2TokenServiceTest, RefreshTokenValidation_Cancel) {
}
TEST_F(DeviceOAuth2TokenServiceTest, RefreshTokenValidation_NoSalt) {
- fake_cryptohome_client_->set_system_salt(std::vector<uint8>());
+ fake_cryptohome_client_->set_system_salt(std::vector<uint8_t>());
fake_cryptohome_client_->SetServiceIsAvailable(true);
SetUpDefaultValues();

Powered by Google App Engine
This is Rietveld 408576698