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

Unified Diff: content/child/db_message_filter.cc

Issue 1544273002: Switch to standard integer types in content/. (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 | « content/child/db_message_filter.h ('k') | content/child/dwrite_font_proxy/dwrite_font_proxy_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/db_message_filter.cc
diff --git a/content/child/db_message_filter.cc b/content/child/db_message_filter.cc
index f50d080b8d885a1bd55321f922f80961d130620f..9bd9af4d08bf74b27408b80e46b8a83bc1f9aacb 100644
--- a/content/child/db_message_filter.cc
+++ b/content/child/db_message_filter.cc
@@ -32,14 +32,14 @@ bool DBMessageFilter::OnMessageReceived(const IPC::Message& message) {
void DBMessageFilter::OnDatabaseUpdateSize(const std::string& origin_identifier,
const base::string16& database_name,
- int64 database_size) {
+ int64_t database_size) {
blink::WebDatabase::updateDatabaseSize(
WebString::fromUTF8(origin_identifier), database_name, database_size);
}
void DBMessageFilter::OnDatabaseUpdateSpaceAvailable(
const std::string& origin_identifier,
- int64 space_available) {
+ int64_t space_available) {
blink::WebDatabase::updateSpaceAvailable(
WebString::fromUTF8(origin_identifier), space_available);
}
« no previous file with comments | « content/child/db_message_filter.h ('k') | content/child/dwrite_font_proxy/dwrite_font_proxy_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698