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

Unified Diff: content/renderer/dom_storage/dom_storage_dispatcher.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/dom_storage_dispatcher.h
diff --git a/content/renderer/dom_storage/dom_storage_dispatcher.h b/content/renderer/dom_storage/dom_storage_dispatcher.h
index 0e980a64347f684d060f91d57d2123b830401656..0ff96447b59ed7f0c6d9236e788a411b7b34f841 100644
--- a/content/renderer/dom_storage/dom_storage_dispatcher.h
+++ b/content/renderer/dom_storage/dom_storage_dispatcher.h
@@ -5,7 +5,8 @@
#ifndef CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_
#define CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/memory/ref_counted.h"
class GURL;
@@ -31,7 +32,7 @@ class DomStorageDispatcher {
// Each call to open should be balanced with a call to close.
scoped_refptr<DOMStorageCachedArea> OpenCachedArea(int connection_id,
- int64 namespace_id,
+ int64_t namespace_id,
const GURL& origin);
void CloseCachedArea(int connection_id, DOMStorageCachedArea* area);

Powered by Google App Engine
This is Rietveld 408576698