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

Unified Diff: chrome/common/importer/safari_importer_utils.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
Index: chrome/common/importer/safari_importer_utils.h
diff --git a/chrome/common/importer/safari_importer_utils.h b/chrome/common/importer/safari_importer_utils.h
index 60c954688e946cc566347c02fd4a7224777fbd60..6885251a62ba87bc710d55030197a35cabab6c02 100644
--- a/chrome/common/importer/safari_importer_utils.h
+++ b/chrome/common/importer/safari_importer_utils.h
@@ -5,7 +5,7 @@
#ifndef CHROME_COMMON_IMPORTER_SAFARI_IMPORTER_UTILS_H_
#define CHROME_COMMON_IMPORTER_SAFARI_IMPORTER_UTILS_H_
-#include "base/basictypes.h"
+#include <stdint.h>
namespace base {
class FilePath;
@@ -17,6 +17,6 @@ class FilePath;
// out: services_supported - the service supported for import.
// Returns true if we can import the Safari profile.
bool SafariImporterCanImport(const base::FilePath& library_dir,
- uint16* services_supported);
+ uint16_t* services_supported);
#endif // CHROME_COMMON_IMPORTER_SAFARI_IMPORTER_UTILS_H_
« no previous file with comments | « chrome/common/importer/profile_import_process_param_traits_macros.h ('k') | chrome/common/importer/safari_importer_utils.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698