diff options
| author | avi <avi@chromium.org> | 2015-12-25 18:10:43 -0800 |
|---|---|---|
| committer | Commit bot <commit-bot@chromium.org> | 2015-12-26 02:11:32 +0000 |
| commit | b896c715dd14ec1f7ac800350b40eeb6de2ba868 (patch) | |
| tree | acc471478046a775c3492046a40c2ea84e8ea88a /chrome/browser/password_manager/native_backend_kwallet_x.cc | |
| parent | f5b61be8a18b07a2a928f10bf1f8f0e8a5358f13 (diff) | |
| download | chromium_src-b896c715dd14ec1f7ac800350b40eeb6de2ba868.zip chromium_src-b896c715dd14ec1f7ac800350b40eeb6de2ba868.tar.gz chromium_src-b896c715dd14ec1f7ac800350b40eeb6de2ba868.tar.bz2 | |
Switch to standard integer types in chrome/browser/, part 3 of 4.
BUG=138542
TBR=thakis@chromium.org
Review URL: https://codereview.chromium.org/1548133002
Cr-Commit-Position: refs/heads/master@{#366883}
Diffstat (limited to 'chrome/browser/password_manager/native_backend_kwallet_x.cc')
| -rw-r--r-- | chrome/browser/password_manager/native_backend_kwallet_x.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/password_manager/native_backend_kwallet_x.cc b/chrome/browser/password_manager/native_backend_kwallet_x.cc index 37c18cb..5c7db54 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; |
