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

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

Issue 1547073003: Switch to standard integer types in content/renderer/. (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/renderer/dom_storage/webstoragenamespace_impl.h
diff --git a/content/renderer/dom_storage/webstoragenamespace_impl.h b/content/renderer/dom_storage/webstoragenamespace_impl.h
index ecf3c74988457dc90c8f8c0d03ade7abd2b8bb0a..d169df54ff9ac5f9d0d8d67c0053403637ba5681 100644
--- a/content/renderer/dom_storage/webstoragenamespace_impl.h
+++ b/content/renderer/dom_storage/webstoragenamespace_impl.h
@@ -5,7 +5,8 @@
#ifndef CONTENT_RENDERER_DOM_STORAGE_WEBSTORAGENAMESPACE_IMPL_H_
#define CONTENT_RENDERER_DOM_STORAGE_WEBSTORAGENAMESPACE_IMPL_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "third_party/WebKit/public/platform/WebStorageNamespace.h"
namespace content {
@@ -15,7 +16,7 @@ class WebStorageNamespaceImpl : public blink::WebStorageNamespace {
// The default constructor creates a local storage namespace, the second
// constructor should be used for session storage namepaces.
WebStorageNamespaceImpl();
- explicit WebStorageNamespaceImpl(int64 namespace_id);
+ explicit WebStorageNamespaceImpl(int64_t namespace_id);
~WebStorageNamespaceImpl() override;
// See WebStorageNamespace.h for documentation on these functions.
@@ -25,7 +26,7 @@ class WebStorageNamespaceImpl : public blink::WebStorageNamespace {
bool isSameNamespace(const WebStorageNamespace&) const override;
private:
- int64 namespace_id_;
+ int64_t namespace_id_;
};
} // namespace content
« no previous file with comments | « content/renderer/dom_storage/webstoragearea_impl.cc ('k') | content/renderer/dom_storage/webstoragenamespace_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698