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

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

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.h
diff --git a/chrome/browser/importer/external_process_importer_host.h b/chrome/browser/importer/external_process_importer_host.h
index 3dc6d4c7d7da06e7333a6860a6c72e8afc453dd8..2c3c6897a494b96f770aa10201d6b0021989a7c7 100644
--- a/chrome/browser/importer/external_process_importer_host.h
+++ b/chrome/browser/importer/external_process_importer_host.h
@@ -5,8 +5,10 @@
#ifndef CHROME_BROWSER_IMPORTER_EXTERNAL_PROCESS_IMPORTER_HOST_H_
#define CHROME_BROWSER_IMPORTER_EXTERNAL_PROCESS_IMPORTER_HOST_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/compiler_specific.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
@@ -44,7 +46,7 @@ class ExternalProcessImporterHost
virtual void StartImportSettings(
const importer::SourceProfile& source_profile,
Profile* target_profile,
- uint16 items,
+ uint16_t items,
ProfileWriter* writer);
// When in headless mode, the importer will not show any warning dialog if
@@ -109,7 +111,7 @@ class ExternalProcessImporterHost
// Make sure BookmarkModel and TemplateURLService are loaded before import
// process starts, if bookmarks and/or search engines are among the items
// which are to be imported.
- void CheckForLoadedModels(uint16 items);
+ void CheckForLoadedModels(uint16_t items);
// True if UI is not to be shown.
bool headless_;
@@ -150,7 +152,7 @@ class ExternalProcessImporterHost
importer::SourceProfile source_profile_;
// Bitmask of items to be imported (see importer::ImportItem enum).
- uint16 items_;
+ uint16_t items_;
// True if the import process has been cancelled.
bool cancelled_;
« no previous file with comments | « chrome/browser/importer/external_process_importer_client.cc ('k') | chrome/browser/importer/external_process_importer_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698