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

Unified Diff: components/password_manager/core/browser/affiliated_match_helper.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: components/password_manager/core/browser/affiliated_match_helper.h
diff --git a/components/password_manager/core/browser/affiliated_match_helper.h b/components/password_manager/core/browser/affiliated_match_helper.h
index db1960d40d8069282fc4ea3c4333e82a7eb4a639..a13e9ea2e76624f515c6ff0b637ccdc3a51da83c 100644
--- a/components/password_manager/core/browser/affiliated_match_helper.h
+++ b/components/password_manager/core/browser/affiliated_match_helper.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATED_MATCH_HELPER_H_
#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATED_MATCH_HELPER_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
@@ -99,7 +101,7 @@ class AffiliatedMatchHelper : public PasswordStore::Observer,
// much, but also low enough that the user be able log-in shortly after
// browser start-up into web sites using Android credentials.
// TODO(engedy): See if we can tie this instead to some meaningful event.
- static const int64 kInitializationDelayOnStartupInSeconds = 8;
+ static const int64_t kInitializationDelayOnStartupInSeconds = 8;
private:
// Reads all autofillable credentials from the password store and starts

Powered by Google App Engine
This is Rietveld 408576698