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

Unified Diff: content/child/indexed_db/webidbdatabase_impl.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
Index: content/child/indexed_db/webidbdatabase_impl.h
diff --git a/content/child/indexed_db/webidbdatabase_impl.h b/content/child/indexed_db/webidbdatabase_impl.h
index 1c9b7255d12080bb898d5d677bd5987460177de0..7d214bbd6c51f50ea8c7e7aeab5b3c6f8c7f530b 100644
--- a/content/child/indexed_db/webidbdatabase_impl.h
+++ b/content/child/indexed_db/webidbdatabase_impl.h
@@ -5,7 +5,8 @@
#ifndef CONTENT_CHILD_INDEXED_DB_WEBIDBDATABASE_IMPL_H_
#define CONTENT_CHILD_INDEXED_DB_WEBIDBDATABASE_IMPL_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/memory/ref_counted.h"
#include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBCursor.h"
#include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBDatabase.h"
@@ -23,8 +24,8 @@ class ThreadSafeSender;
class WebIDBDatabaseImpl : public blink::WebIDBDatabase {
public:
- WebIDBDatabaseImpl(int32 ipc_database_id,
- int32 ipc_database_callbacks_id,
+ WebIDBDatabaseImpl(int32_t ipc_database_id,
+ int32_t ipc_database_callbacks_id,
ThreadSafeSender* thread_safe_sender);
~WebIDBDatabaseImpl() override;
@@ -110,8 +111,8 @@ class WebIDBDatabaseImpl : public blink::WebIDBDatabase {
const blink::WebVector<blink::WebString>& uuids) override;
private:
- int32 ipc_database_id_;
- int32 ipc_database_callbacks_id_;
+ int32_t ipc_database_id_;
+ int32_t ipc_database_callbacks_id_;
scoped_refptr<ThreadSafeSender> thread_safe_sender_;
};
« no previous file with comments | « content/child/indexed_db/webidbcursor_impl_unittest.cc ('k') | content/child/indexed_db/webidbdatabase_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698