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

Unified Diff: chrome/utility/importer/safari_importer.mm

Issue 1548153002: Switch to standard integer types in chrome/. (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
« no previous file with comments | « chrome/utility/importer/safari_importer.h ('k') | chrome/utility/importer/safari_importer_unittest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/safari_importer.mm
diff --git a/chrome/utility/importer/safari_importer.mm b/chrome/utility/importer/safari_importer.mm
index 7a121f17befb8bf2a0437f1208820c63673e1ed9..a719a102905362886c54a3b51f2f1375f51c6903 100644
--- a/chrome/utility/importer/safari_importer.mm
+++ b/chrome/utility/importer/safari_importer.mm
@@ -49,7 +49,7 @@ SafariImporter::~SafariImporter() {
}
void SafariImporter::StartImport(const importer::SourceProfile& source_profile,
- uint16 items,
+ uint16_t items,
ImporterBridge* bridge) {
bridge_ = bridge;
// The order here is important!
@@ -123,7 +123,7 @@ void SafariImporter::ImportFaviconURLs(sql::Connection* db,
sql::Statement s(db->GetUniqueStatement(query));
while (s.Step() && !cancelled()) {
- int64 icon_id = s.ColumnInt64(0);
+ int64_t icon_id = s.ColumnInt64(0);
GURL url = GURL(s.ColumnString(1));
(*favicon_map)[icon_id].insert(url);
}
« no previous file with comments | « chrome/utility/importer/safari_importer.h ('k') | chrome/utility/importer/safari_importer_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698