Index: content/browser/dom_storage/dom_storage_area_unittest.cc |
diff --git a/content/browser/dom_storage/dom_storage_area_unittest.cc b/content/browser/dom_storage/dom_storage_area_unittest.cc |
index ba91f2697dd43aee6fcab753793d4cbbf79eeafe..e4de22ee2062b52bda09077cc413146ced8d2f4f 100644 |
--- a/content/browser/dom_storage/dom_storage_area_unittest.cc |
+++ b/content/browser/dom_storage/dom_storage_area_unittest.cc |
@@ -2,10 +2,14 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
#include "base/bind.h" |
#include "base/files/file_util.h" |
#include "base/files/scoped_temp_dir.h" |
#include "base/location.h" |
+#include "base/macros.h" |
#include "base/message_loop/message_loop.h" |
#include "base/single_thread_task_runner.h" |
#include "base/strings/utf_string_conversions.h" |
@@ -139,7 +143,7 @@ TEST_F(DOMStorageAreaTest, DOMStorageAreaBasics) { |
} |
TEST_F(DOMStorageAreaTest, BackingDatabaseOpened) { |
- const int64 kSessionStorageNamespaceId = kLocalStorageNamespaceId + 1; |
+ const int64_t kSessionStorageNamespaceId = kLocalStorageNamespaceId + 1; |
base::ScopedTempDir temp_dir; |
ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); |
const base::FilePath kExpectedOriginFilePath = temp_dir.path().Append( |