Index: webkit/dom_storage/dom_storage_area_unittest.cc |
diff --git a/webkit/dom_storage/dom_storage_area_unittest.cc b/webkit/dom_storage/dom_storage_area_unittest.cc |
index e41b080d6409f652f9d2bb275fbd35eb93f99265..5d2e953bd41b51945df517dd4d42535cf2a3a7b8 100644 |
--- a/webkit/dom_storage/dom_storage_area_unittest.cc |
+++ b/webkit/dom_storage/dom_storage_area_unittest.cc |
@@ -73,7 +73,7 @@ class DomStorageAreaTest : public testing::Test { |
TEST_F(DomStorageAreaTest, DomStorageAreaBasics) { |
scoped_refptr<DomStorageArea> area( |
- new DomStorageArea(1, std::string(), kOrigin, NULL)); |
+ new DomStorageArea(1, std::string(), kOrigin, NULL, NULL)); |
string16 old_value; |
NullableString16 old_nullable_value; |
scoped_refptr<DomStorageArea> copy; |
@@ -138,12 +138,12 @@ TEST_F(DomStorageAreaTest, BackingDatabaseOpened) { |
EXPECT_FALSE(file_util::PathExists(kExpectedOriginFilePath)); |
} |
- // Valid directory and origin but non-local namespace id. Backing should |
+ // Valid directory and origin but no session storage backing. Backing should |
// be null. |
{ |
scoped_refptr<DomStorageArea> area( |
new DomStorageArea(kSessionStorageNamespaceId, std::string(), kOrigin, |
- NULL)); |
+ NULL, NULL)); |
EXPECT_EQ(NULL, area->backing_.get()); |
EXPECT_TRUE(area->is_initial_import_done_); |