| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stdint.h> | 5 #include <stdint.h> |
| 6 #include <utility> | 6 #include <utility> |
| 7 | 7 |
| 8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 | 273 |
| 274 EXPECT_TRUE(callbacks->connection()); | 274 EXPECT_TRUE(callbacks->connection()); |
| 275 | 275 |
| 276 // ConnectionOpened() is usually called by the dispatcher. | 276 // ConnectionOpened() is usually called by the dispatcher. |
| 277 context->ConnectionOpened(kTestOrigin, callbacks->connection()); | 277 context->ConnectionOpened(kTestOrigin, callbacks->connection()); |
| 278 | 278 |
| 279 EXPECT_TRUE(factory->IsBackingStoreOpen(kTestOrigin)); | 279 EXPECT_TRUE(factory->IsBackingStoreOpen(kTestOrigin)); |
| 280 | 280 |
| 281 // Simulate the write failure. | 281 // Simulate the write failure. |
| 282 leveldb::Status status = leveldb::Status::IOError("Simulated failure"); | 282 leveldb::Status status = leveldb::Status::IOError("Simulated failure"); |
| 283 callbacks->connection()->database()->TransactionCommitFailed(status); | 283 context->GetIDBFactory()->HandleBackingStoreFailure(kTestOrigin); |
| 284 | 284 |
| 285 EXPECT_TRUE(db_callbacks->forced_close_called()); | 285 EXPECT_TRUE(db_callbacks->forced_close_called()); |
| 286 EXPECT_FALSE(factory->IsBackingStoreOpen(kTestOrigin)); | 286 EXPECT_FALSE(factory->IsBackingStoreOpen(kTestOrigin)); |
| 287 } | 287 } |
| 288 | 288 |
| 289 } // namespace content | 289 } // namespace content |
| OLD | NEW |