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

Unified Diff: chrome/browser/password_manager/native_backend_kwallet_x.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (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/password_manager/native_backend_kwallet_x.cc
diff --git a/chrome/browser/password_manager/native_backend_kwallet_x.cc b/chrome/browser/password_manager/native_backend_kwallet_x.cc
index 37c18cbc7ce88f1b2219e64fc5e2e1d720d98565..5c7db547152e113d1f727fe756785997ef993acf 100644
--- a/chrome/browser/password_manager/native_backend_kwallet_x.cc
+++ b/chrome/browser/password_manager/native_backend_kwallet_x.cc
@@ -4,6 +4,9 @@
#include "chrome/browser/password_manager/native_backend_kwallet_x.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <vector>
#include "base/bind.h"
@@ -148,7 +151,7 @@ bool DeserializeValueSize(const std::string& signon_realm,
form->signon_realm.assign(signon_realm);
int scheme = 0;
- int64 date_created = 0;
+ int64_t date_created = 0;
int type = 0;
int generation_upload_status = 0;
// Note that these will be read back in the order listed due to
@@ -181,7 +184,7 @@ bool DeserializeValueSize(const std::string& signon_realm,
}
if (version > 2) {
- int64 date_synced = 0;
+ int64_t date_synced = 0;
if (!iter.ReadInt64(&date_synced)) {
LogDeserializationWarning(version, signon_realm, false);
return false;

Powered by Google App Engine
This is Rietveld 408576698