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

Unified Diff: chrome/utility/importer/edge_importer_win.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/edge_database_reader_win.cc ('k') | chrome/utility/importer/edge_importer_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/edge_importer_win.h
diff --git a/chrome/utility/importer/edge_importer_win.h b/chrome/utility/importer/edge_importer_win.h
index 79e1f7aaf4f982957bb9f8396777d7138bbad2a8..c93c38a05d87d441f3fe9f2277d6869246b9c821 100644
--- a/chrome/utility/importer/edge_importer_win.h
+++ b/chrome/utility/importer/edge_importer_win.h
@@ -5,11 +5,13 @@
#ifndef CHROME_UTILITY_IMPORTER_EDGE_IMPORTER_WIN_H_
#define CHROME_UTILITY_IMPORTER_EDGE_IMPORTER_WIN_H_
+#include <stdint.h>
+
#include <vector>
-#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "chrome/utility/importer/importer.h"
#include "components/favicon_base/favicon_usage_data.h"
@@ -21,7 +23,7 @@ class EdgeImporter : public Importer {
// Importer:
void StartImport(const importer::SourceProfile& source_profile,
- uint16 items,
+ uint16_t items,
ImporterBridge* bridge) override;
private:
« no previous file with comments | « chrome/utility/importer/edge_database_reader_win.cc ('k') | chrome/utility/importer/edge_importer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698