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

Unified Diff: chrome/browser/importer/external_process_importer_host.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (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/browser/importer/external_process_importer_host.cc
diff --git a/chrome/browser/importer/external_process_importer_host.cc b/chrome/browser/importer/external_process_importer_host.cc
index 5f8cfc91516de2333f55dd5fa50eac5f2ce35ad3..6552f7f268f8e8fbbbda7f0812216913e43979f8 100644
--- a/chrome/browser/importer/external_process_importer_host.cc
+++ b/chrome/browser/importer/external_process_importer_host.cc
@@ -45,7 +45,7 @@ void ExternalProcessImporterHost::Cancel() {
void ExternalProcessImporterHost::StartImportSettings(
const importer::SourceProfile& source_profile,
Profile* target_profile,
- uint16 items,
+ uint16_t items,
ProfileWriter* writer) {
// We really only support importing from one host at a time.
DCHECK(!profile_);
@@ -185,7 +185,7 @@ bool ExternalProcessImporterHost::CheckForFirefoxLock(
return true;
}
-void ExternalProcessImporterHost::CheckForLoadedModels(uint16 items) {
+void ExternalProcessImporterHost::CheckForLoadedModels(uint16_t items) {
// A target profile must be loaded by StartImportSettings().
DCHECK(profile_);
« no previous file with comments | « chrome/browser/importer/external_process_importer_host.h ('k') | chrome/browser/importer/firefox_importer_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698