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

Unified Diff: content/renderer/dom_storage/dom_storage_cached_area.h

Issue 1499423004: Remove kint32max. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kint9
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/renderer/dom_storage/dom_storage_cached_area.h
diff --git a/content/renderer/dom_storage/dom_storage_cached_area.h b/content/renderer/dom_storage/dom_storage_cached_area.h
index b99103885537822d9a4c309671bd37db25862d56..cf345fa236a96377874117cd486320cecf875959 100644
--- a/content/renderer/dom_storage/dom_storage_cached_area.h
+++ b/content/renderer/dom_storage/dom_storage_cached_area.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_CACHED_AREA_H_
#define CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_CACHED_AREA_H_
+#include <stdint.h>
+
#include <map>
#include "base/memory/ref_counted.h"
@@ -27,11 +29,11 @@ class DOMStorageProxy;
class CONTENT_EXPORT DOMStorageCachedArea
: public base::RefCounted<DOMStorageCachedArea> {
public:
- DOMStorageCachedArea(int64 namespace_id,
+ DOMStorageCachedArea(int64_t namespace_id,
const GURL& origin,
DOMStorageProxy* proxy);
- int64 namespace_id() const { return namespace_id_; }
+ int64_t namespace_id() const { return namespace_id_; }
const GURL& origin() const { return origin_; }
unsigned GetLength(int connection_id);
@@ -82,7 +84,7 @@ class CONTENT_EXPORT DOMStorageCachedArea
bool ignore_all_mutations_;
std::map<base::string16, int> ignore_key_mutations_;
- int64 namespace_id_;
+ int64_t namespace_id_;
GURL origin_;
scoped_refptr<DOMStorageMap> map_;
scoped_refptr<DOMStorageProxy> proxy_;
« no previous file with comments | « content/public/common/context_menu_params.cc ('k') | content/renderer/dom_storage/dom_storage_cached_area.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698