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

Unified Diff: content/child/database_util.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/content_child_helpers.cc ('k') | content/child/database_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/database_util.h
diff --git a/content/child/database_util.h b/content/child/database_util.h
index 1449d6bf0e83e162b8dc8ea8640d288b408c7f2e..adeb3972d886ee0d446e2fead965561e8ed74101 100644
--- a/content/child/database_util.h
+++ b/content/child/database_util.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_CHILD_DATABASE_UTIL_H_
#define CONTENT_CHILD_DATABASE_UTIL_H_
+#include <stdint.h>
+
#include "content/child/blink_platform_impl.h"
namespace IPC {
@@ -34,10 +36,9 @@ class DatabaseUtil {
static long long DatabaseGetSpaceAvailable(
const blink::WebString& origin_identifier,
IPC::SyncMessageFilter* sync_message_filter);
- static bool DatabaseSetFileSize(
- const blink::WebString& vfs_file_name,
- int64 size,
- IPC::SyncMessageFilter* sync_message_filter);
+ static bool DatabaseSetFileSize(const blink::WebString& vfs_file_name,
+ int64_t size,
+ IPC::SyncMessageFilter* sync_message_filter);
};
} // namespace content
« no previous file with comments | « content/child/content_child_helpers.cc ('k') | content/child/database_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698