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

Unified Diff: chrome/browser/supervised_user/legacy/supervised_user_registration_utility_unittest.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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/supervised_user/legacy/supervised_user_registration_utility_unittest.cc
diff --git a/chrome/browser/supervised_user/legacy/supervised_user_registration_utility_unittest.cc b/chrome/browser/supervised_user/legacy/supervised_user_registration_utility_unittest.cc
index 8c6c64b3c5d145d5fba645019b996dfa0160e687..2ffea41e7ef21b164cc0c8f7f290c37b58741b21 100644
--- a/chrome/browser/supervised_user/legacy/supervised_user_registration_utility_unittest.cc
+++ b/chrome/browser/supervised_user/legacy/supervised_user_registration_utility_unittest.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/supervised_user/legacy/supervised_user_registration_utility.h"
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/message_loop/message_loop.h"
#include "base/prefs/scoped_user_pref_update.h"
@@ -133,7 +135,7 @@ class SupervisedUserRegistrationUtilityTest : public ::testing::Test {
MockChangeProcessor* change_processor_;
// A unique ID for creating "remote" Sync data.
- int64 sync_data_id_;
+ int64_t sync_data_id_;
// Whether OnSupervisedUserRegistered has been called.
bool received_callback_;

Powered by Google App Engine
This is Rietveld 408576698