| OLD | NEW |
| 1 Index header: | 1 Index header: |
| 2 num_entries: 2 | 2 num_entries: 2 |
| 3 num_bytes: 27 | 3 num_bytes: 27 |
| 4 this_id: 1 | 4 this_id: 2 |
| 5 table_len: 64k | 5 table_len: 128k |
| 6 | 6 |
| 7 head: 0x90000001 | 7 head: 0x90000001 |
| 8 tail: 0x90000000 | 8 tail: 0x90000000 |
| 9 | 9 |
| 10 Address: 0xa0010002 | 10 Address: 0xa0010002 |
| 11 Address: 0xa0010003 | 11 Address: 0xa0010003 |
| 12 | 12 |
| 13 ------------------------------- | 13 ------------------------------- |
| 14 | 14 |
| 15 entry: | 15 entry: |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 Generated with: | 57 Generated with: |
| 58 | 58 |
| 59 disk_cache::Entry *entry; | 59 disk_cache::Entry *entry; |
| 60 ASSERT_TRUE(cache_->CreateEntry("the first key", &entry)); | 60 ASSERT_TRUE(cache_->CreateEntry("the first key", &entry)); |
| 61 entry->Close(); | 61 entry->Close(); |
| 62 | 62 |
| 63 ASSERT_TRUE(cache_->CreateEntry("some other key", &entry)); <---- Edit value* | 63 ASSERT_TRUE(cache_->CreateEntry("some other key", &entry)); <---- Edit value* |
| 64 entry->Close(); | 64 entry->Close(); |
| 65 | 65 |
| 66 * Edit the value with the debugger before it is saved to disk. | 66 * Edit the value with the debugger before it is saved to disk. |
| OLD | NEW |