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

Unified Diff: chrome/utility/importer/safari_importer_unittest.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
Index: chrome/utility/importer/safari_importer_unittest.mm
diff --git a/chrome/utility/importer/safari_importer_unittest.mm b/chrome/utility/importer/safari_importer_unittest.mm
index 46675e13b18ae2a94ed2a8dda86057e2e490ea02..1a3201a89b053450907a7d0c2bb09632311d8758 100644
--- a/chrome/utility/importer/safari_importer_unittest.mm
+++ b/chrome/utility/importer/safari_importer_unittest.mm
@@ -4,10 +4,13 @@
#include "chrome/utility/importer/safari_importer.h"
-#include "base/basictypes.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
+#include "base/macros.h"
#include "base/path_service.h"
#include "base/strings/string16.h"
#include "base/strings/string_split.h"
@@ -258,7 +261,7 @@ TEST_F(SafariImporterTest, FaviconImport) {
}
TEST_F(SafariImporterTest, CanImport) {
- uint16 items = importer::NONE;
+ uint16_t items = importer::NONE;
EXPECT_TRUE(SafariImporterCanImport(
GetTestSafariLibraryPath("default"), &items));
EXPECT_EQ(items, importer::HISTORY | importer::FAVORITES);
« no previous file with comments | « chrome/utility/importer/safari_importer.mm ('k') | chrome/utility/local_discovery/service_discovery_message_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698