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

Unified Diff: content/browser/indexed_db/indexed_db_index_writer.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/browser/indexed_db/indexed_db_index_writer.cc
diff --git a/content/browser/indexed_db/indexed_db_index_writer.cc b/content/browser/indexed_db/indexed_db_index_writer.cc
index 53ae963c04ab6db721db6f17c4ae952b00951fb6..6378c9b4d0689ffc953fc955344be5ee09cbf590 100644
--- a/content/browser/indexed_db/indexed_db_index_writer.cc
+++ b/content/browser/indexed_db/indexed_db_index_writer.cc
@@ -4,6 +4,8 @@
#include "content/browser/indexed_db/indexed_db_index_writer.h"
+#include <stddef.h>
+
#include "base/logging.h"
#include "base/strings/utf_string_conversions.h"
#include "content/browser/indexed_db/indexed_db_backing_store.h"
@@ -31,9 +33,9 @@ IndexWriter::~IndexWriter() {}
bool IndexWriter::VerifyIndexKeys(
IndexedDBBackingStore* backing_store,
IndexedDBBackingStore::Transaction* transaction,
- int64 database_id,
- int64 object_store_id,
- int64 index_id,
+ int64_t database_id,
+ int64_t object_store_id,
+ int64_t index_id,
bool* can_add_keys,
const IndexedDBKey& primary_key,
base::string16* error_message) const {
@@ -68,9 +70,9 @@ void IndexWriter::WriteIndexKeys(
const IndexedDBBackingStore::RecordIdentifier& record_identifier,
IndexedDBBackingStore* backing_store,
IndexedDBBackingStore::Transaction* transaction,
- int64 database_id,
- int64 object_store_id) const {
- int64 index_id = index_metadata_.id;
+ int64_t database_id,
+ int64_t object_store_id) const {
+ int64_t index_id = index_metadata_.id;
DCHECK_EQ(index_id, index_keys_.first);
for (size_t i = 0; i < index_keys_.second.size(); ++i) {
leveldb::Status s =
@@ -89,9 +91,9 @@ void IndexWriter::WriteIndexKeys(
bool IndexWriter::AddingKeyAllowed(
IndexedDBBackingStore* backing_store,
IndexedDBBackingStore::Transaction* transaction,
- int64 database_id,
- int64 object_store_id,
- int64 index_id,
+ int64_t database_id,
+ int64_t object_store_id,
+ int64_t index_id,
const IndexedDBKey& index_key,
const IndexedDBKey& primary_key,
bool* allowed) const {
@@ -121,7 +123,7 @@ bool IndexWriter::AddingKeyAllowed(
bool MakeIndexWriters(
IndexedDBTransaction* transaction,
IndexedDBBackingStore* backing_store,
- int64 database_id,
+ int64_t database_id,
const IndexedDBObjectStoreMetadata& object_store,
const IndexedDBKey& primary_key, // makes a copy
bool key_was_generated,
« no previous file with comments | « content/browser/indexed_db/indexed_db_index_writer.h ('k') | content/browser/indexed_db/indexed_db_internals_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698