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

Unified Diff: content/child/db_message_filter.h

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/database_util.cc ('k') | content/child/db_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/db_message_filter.h
diff --git a/content/child/db_message_filter.h b/content/child/db_message_filter.h
index c6ee0cb188893ea912bb3a6c6f2e10e7a017747d..fb1875e2646853dd17b78a0954b55c312c0b36ff 100644
--- a/content/child/db_message_filter.h
+++ b/content/child/db_message_filter.h
@@ -5,7 +5,8 @@
#ifndef CONTENT_CHILD_DB_MESSAGE_FILTER_H_
#define CONTENT_CHILD_DB_MESSAGE_FILTER_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/strings/string16.h"
#include "ipc/message_filter.h"
@@ -26,9 +27,9 @@ class DBMessageFilter : public IPC::MessageFilter {
private:
void OnDatabaseUpdateSize(const std::string& origin_identifier,
const base::string16& database_name,
- int64 database_size);
+ int64_t database_size);
void OnDatabaseUpdateSpaceAvailable(const std::string& origin_identifier,
- int64 space_available);
+ int64_t space_available);
void OnDatabaseResetSpaceAvailable(const std::string& origin_identifier);
void OnDatabaseCloseImmediately(const std::string& origin_identifier,
const base::string16& database_name);
« no previous file with comments | « content/child/database_util.cc ('k') | content/child/db_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698