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

Unified Diff: chrome/common/importer/importer_data_types.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/common/importer/importer_bridge.h ('k') | chrome/common/importer/importer_data_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/importer/importer_data_types.h
diff --git a/chrome/common/importer/importer_data_types.h b/chrome/common/importer/importer_data_types.h
index 9b588d6323b66224eb700636831e423b3168e843..73926fd10cb20c085c6638eb269f1a813d186303 100644
--- a/chrome/common/importer/importer_data_types.h
+++ b/chrome/common/importer/importer_data_types.h
@@ -5,14 +5,16 @@
#ifndef CHROME_COMMON_IMPORTER_IMPORTER_DATA_TYPES_H_
#define CHROME_COMMON_IMPORTER_IMPORTER_DATA_TYPES_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/files/file_path.h"
#include "base/memory/ref_counted.h"
#include "base/strings/string16.h"
#include "base/time/time.h"
+#include "build/build_config.h"
#include "chrome/common/importer/importer_type.h"
#include "url/gurl.h"
@@ -41,7 +43,7 @@ struct SourceProfile {
ImporterType importer_type;
base::FilePath source_path;
base::FilePath app_path;
- uint16 services_supported; // Bitmask of ImportItem.
+ uint16_t services_supported; // Bitmask of ImportItem.
// The application locale. Stored because we can only access it from the UI
// thread on the browser process. This is only used by the Firefox importer.
std::string locale;
« no previous file with comments | « chrome/common/importer/importer_bridge.h ('k') | chrome/common/importer/importer_data_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698