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

Unified Diff: chrome/utility/importer/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/ie_importer_win.cc ('k') | chrome/utility/importer/importer_creator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/importer.h
diff --git a/chrome/utility/importer/importer.h b/chrome/utility/importer/importer.h
index 36483e071a71db196d08f4b087aaa4b5fd71c84c..1b541a27c61c61443a6cd5615f73041aed66efa8 100644
--- a/chrome/utility/importer/importer.h
+++ b/chrome/utility/importer/importer.h
@@ -5,7 +5,9 @@
#ifndef CHROME_UTILITY_IMPORTER_IMPORTER_H_
#define CHROME_UTILITY_IMPORTER_IMPORTER_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
class ImporterBridge;
@@ -22,7 +24,7 @@ class Importer : public base::RefCountedThreadSafe<Importer> {
// import, the importer should invoke ImporterHost::NotifyImportEnded() to
// notify its host that import stuff have been finished.
virtual void StartImport(const importer::SourceProfile& source_profile,
- uint16 items,
+ uint16_t items,
ImporterBridge* bridge) = 0;
// Cancels the import process.
« no previous file with comments | « chrome/utility/importer/ie_importer_win.cc ('k') | chrome/utility/importer/importer_creator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698