| 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 #ifndef NET_DISK_CACHE_BLOCKFILE_ENTRY_IMPL_H_ | 5 #ifndef NET_DISK_CACHE_BLOCKFILE_ENTRY_IMPL_H_ |
| 6 #define NET_DISK_CACHE_BLOCKFILE_ENTRY_IMPL_H_ | 6 #define NET_DISK_CACHE_BLOCKFILE_ENTRY_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "net/disk_cache/blockfile/disk_format.h" | 12 #include "net/disk_cache/blockfile/disk_format.h" |
| 12 #include "net/disk_cache/blockfile/storage_block-inl.h" | 13 #include "net/disk_cache/blockfile/storage_block-inl.h" |
| 13 #include "net/disk_cache/blockfile/storage_block.h" | 14 #include "net/disk_cache/blockfile/storage_block.h" |
| 14 #include "net/disk_cache/disk_cache.h" | 15 #include "net/disk_cache/disk_cache.h" |
| 15 #include "net/log/net_log.h" | 16 #include "net/log/net_log.h" |
| 16 | 17 |
| 17 namespace disk_cache { | 18 namespace disk_cache { |
| 18 | 19 |
| 19 class BackendImpl; | 20 class BackendImpl; |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 scoped_ptr<SparseControl> sparse_; // Support for sparse entries. | 288 scoped_ptr<SparseControl> sparse_; // Support for sparse entries. |
| 288 | 289 |
| 289 net::BoundNetLog net_log_; | 290 net::BoundNetLog net_log_; |
| 290 | 291 |
| 291 DISALLOW_COPY_AND_ASSIGN(EntryImpl); | 292 DISALLOW_COPY_AND_ASSIGN(EntryImpl); |
| 292 }; | 293 }; |
| 293 | 294 |
| 294 } // namespace disk_cache | 295 } // namespace disk_cache |
| 295 | 296 |
| 296 #endif // NET_DISK_CACHE_BLOCKFILE_ENTRY_IMPL_H_ | 297 #endif // NET_DISK_CACHE_BLOCKFILE_ENTRY_IMPL_H_ |
| OLD | NEW |