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

Unified Diff: content/renderer/dom_storage/dom_storage_cached_area_unittest.cc

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_cached_area_unittest.cc
diff --git a/content/renderer/dom_storage/dom_storage_cached_area_unittest.cc b/content/renderer/dom_storage/dom_storage_cached_area_unittest.cc
index 631a281431f74c9985e291bdc61177611c42a124..4c433271feb6fe15d23e0f0079cfbc1897930bab 100644
--- a/content/renderer/dom_storage/dom_storage_cached_area_unittest.cc
+++ b/content/renderer/dom_storage/dom_storage_cached_area_unittest.cc
@@ -4,6 +4,8 @@
#include "content/renderer/dom_storage/dom_storage_cached_area.h"
+#include <stdint.h>
+
#include <list>
#include "base/bind.h"
@@ -118,7 +120,7 @@ class DOMStorageCachedAreaTest : public testing::Test {
kPageUrl("http://dom_storage/page") {
}
- const int64 kNamespaceId;
+ const int64_t kNamespaceId;
const GURL kOrigin;
const base::string16 kKey;
const base::string16 kValue;
« no previous file with comments | « content/renderer/dom_storage/dom_storage_cached_area.h ('k') | content/renderer/dom_storage/dom_storage_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698