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

Unified Diff: chrome/utility/profile_import_handler.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/printing_handler.cc ('k') | chrome/utility/profile_import_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/profile_import_handler.h
diff --git a/chrome/utility/profile_import_handler.h b/chrome/utility/profile_import_handler.h
index e0eb94faa5b4ec33bd12d1b21623365cf5bd2c55..cf7c909ed4b2f450d0daff6c05644e30c78baedd 100644
--- a/chrome/utility/profile_import_handler.h
+++ b/chrome/utility/profile_import_handler.h
@@ -5,7 +5,8 @@
#ifndef CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_
#define CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
@@ -33,12 +34,11 @@ class ProfileImportHandler : public UtilityMessageHandler {
bool OnMessageReceived(const IPC::Message& message) override;
private:
- void OnImportStart(
- const importer::SourceProfile& source_profile,
- uint16 items,
- const base::DictionaryValue& localized_strings);
+ void OnImportStart(const importer::SourceProfile& source_profile,
+ uint16_t items,
+ const base::DictionaryValue& localized_strings);
void OnImportCancel();
- void OnImportItemFinished(uint16 item);
+ void OnImportItemFinished(uint16_t item);
// The following are used with out of process profile import:
void ImporterCleanup();
@@ -52,7 +52,7 @@ class ProfileImportHandler : public UtilityMessageHandler {
scoped_refptr<ExternalProcessImporterBridge> bridge_;
// A bitmask of importer::ImportItem.
- uint16 items_to_import_;
+ uint16_t items_to_import_;
// Importer of the appropriate type (Firefox, Safari, IE, etc.)
scoped_refptr<Importer> importer_;
« no previous file with comments | « chrome/utility/printing_handler.cc ('k') | chrome/utility/profile_import_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698