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

Unified Diff: content/browser/dom_storage/dom_storage_session.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/dom_storage/dom_storage_session.cc
diff --git a/content/browser/dom_storage/dom_storage_session.cc b/content/browser/dom_storage/dom_storage_session.cc
index 7706ec850641cba60d160632b7532ee23acec94f..338b6cc25c62a0ec99b7cc309b6640ac2aeeaa65 100644
--- a/content/browser/dom_storage/dom_storage_session.cc
+++ b/content/browser/dom_storage/dom_storage_session.cc
@@ -54,8 +54,8 @@ DOMStorageSession* DOMStorageSession::Clone() {
// static
DOMStorageSession* DOMStorageSession::CloneFrom(DOMStorageContextImpl* context,
- int64 namepace_id_to_clone) {
- int64 clone_id = context->AllocateSessionId();
+ int64_t namepace_id_to_clone) {
+ int64_t clone_id = context->AllocateSessionId();
std::string persistent_clone_id = context->AllocatePersistentSessionId();
context->task_runner()->PostTask(
FROM_HERE,
@@ -65,7 +65,7 @@ DOMStorageSession* DOMStorageSession::CloneFrom(DOMStorageContextImpl* context,
}
DOMStorageSession::DOMStorageSession(DOMStorageContextImpl* context,
- int64 namespace_id,
+ int64_t namespace_id,
const std::string& persistent_namespace_id)
: context_(context),
namespace_id_(namespace_id),
« no previous file with comments | « content/browser/dom_storage/dom_storage_session.h ('k') | content/browser/dom_storage/local_storage_database_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698