Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(794)

Unified Diff: net/disk_cache/block_files.cc

Issue 3452030: FBTF: Moves code to the headers. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/disk_cache/block_files.h ('k') | net/disk_cache/in_flight_io.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/block_files.cc
diff --git a/net/disk_cache/block_files.cc b/net/disk_cache/block_files.cc
index e0021a8c66d18899119972cd80cbe985f795e14a..7936b8f937421d1e1fcfb5a41d3c2e6b0b917b00 100644
--- a/net/disk_cache/block_files.cc
+++ b/net/disk_cache/block_files.cc
@@ -184,6 +184,10 @@ bool NeedToGrowBlockFile(const disk_cache::BlockFileHeader* header,
namespace disk_cache {
+BlockFiles::BlockFiles(const FilePath& path)
+ : init_(false), zero_buffer_(NULL), path_(path) {
+}
+
BlockFiles::~BlockFiles() {
if (zero_buffer_)
delete[] zero_buffer_;
« no previous file with comments | « net/disk_cache/block_files.h ('k') | net/disk_cache/in_flight_io.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698