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

Unified Diff: chrome/browser/browsing_data/browsing_data_database_helper.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 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/browsing_data/browsing_data_database_helper.h
diff --git a/chrome/browser/browsing_data/browsing_data_database_helper.h b/chrome/browser/browsing_data/browsing_data_database_helper.h
index c5cdb1863d6b24b29b99c576f8af086d90da8933..e0565d3dd9a5de07f5e4b95aa14d883a36614d53 100644
--- a/chrome/browser/browsing_data/browsing_data_database_helper.h
+++ b/chrome/browser/browsing_data/browsing_data_database_helper.h
@@ -5,12 +5,15 @@
#ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_DATABASE_HELPER_H_
#define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_DATABASE_HELPER_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include <list>
#include <set>
#include <string>
-#include "base/basictypes.h"
#include "base/callback_forward.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/time/time.h"
#include "storage/browser/database/database_tracker.h"
@@ -32,14 +35,14 @@ class BrowsingDataDatabaseHelper
DatabaseInfo(const storage::DatabaseIdentifier& identifier,
const std::string& database_name,
const std::string& description,
- int64 size,
+ int64_t size,
base::Time last_modified);
~DatabaseInfo();
storage::DatabaseIdentifier identifier;
std::string database_name;
std::string description;
- int64 size;
+ int64_t size;
base::Time last_modified;
};

Powered by Google App Engine
This is Rietveld 408576698