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

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

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/nss_decryptor_win.h ('k') | chrome/utility/importer/safari_importer.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/safari_importer.h
diff --git a/chrome/utility/importer/safari_importer.h b/chrome/utility/importer/safari_importer.h
index e063b757947ce774f51b6a58f7cef48ce6ab20a9..b0c524a8be2be0fd5e4f22dc4443758edf1baad4 100644
--- a/chrome/utility/importer/safari_importer.h
+++ b/chrome/utility/importer/safari_importer.h
@@ -5,14 +5,16 @@
#ifndef CHROME_UTILITY_IMPORTER_SAFARI_IMPORTER_H_
#define CHROME_UTILITY_IMPORTER_SAFARI_IMPORTER_H_
+#include <stdint.h>
+
#include <map>
#include <set>
#include <vector>
-#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
#include "base/gtest_prod_util.h"
+#include "base/macros.h"
#include "chrome/common/importer/importer_url_row.h"
#include "chrome/utility/importer/importer.h"
#include "components/favicon_base/favicon_usage_data.h"
@@ -41,7 +43,7 @@ class SafariImporter : public Importer {
// Importer:
void StartImport(const importer::SourceProfile& source_profile,
- uint16 items,
+ uint16_t items,
ImporterBridge* bridge) override;
private:
@@ -56,7 +58,7 @@ class SafariImporter : public Importer {
// Multiple URLs can share the same favicon; this is a map
// of URLs -> IconIDs that we load as a temporary step before
// actually loading the icons.
- typedef std::map<int64, std::set<GURL> > FaviconMap;
+ typedef std::map<int64_t, std::set<GURL>> FaviconMap;
void ImportBookmarks();
void ImportPasswords();
« no previous file with comments | « chrome/utility/importer/nss_decryptor_win.h ('k') | chrome/utility/importer/safari_importer.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698