diff options
author | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-19 19:47:42 +0000 |
---|---|---|
committer | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-19 19:47:42 +0000 |
commit | f44bb385a24110f16d1f20b8caece83f70efa25b (patch) | |
tree | 3a54512ece572155c1572c13f65cc0f810ae82f2 /net/disk_cache/backend_impl.h | |
parent | 0b0bf61ec44f91d6e31fad7b002700632e6f9952 (diff) | |
download | chromium_src-f44bb385a24110f16d1f20b8caece83f70efa25b.zip chromium_src-f44bb385a24110f16d1f20b8caece83f70efa25b.tar.gz chromium_src-f44bb385a24110f16d1f20b8caece83f70efa25b.tar.bz2 |
Fix up warnings in net/
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1048 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/backend_impl.h')
-rw-r--r-- | net/disk_cache/backend_impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/disk_cache/backend_impl.h b/net/disk_cache/backend_impl.h index 1f1bffd..d19a515 100644 --- a/net/disk_cache/backend_impl.h +++ b/net/disk_cache/backend_impl.h @@ -47,12 +47,12 @@ namespace disk_cache { class BackendImpl : public Backend { public: explicit BackendImpl(const std::wstring& path) - : path_(path), init_(false), mask_(0), block_files_(path), - unit_test_(false), restarted_(false), max_size_(0) {} + : path_(path), block_files_(path), mask_(0), max_size_(0), + init_(false), restarted_(false), unit_test_(false) {} // mask can be used to limit the usable size of the hash table, for testing. BackendImpl(const std::wstring& path, uint32 mask) - : path_(path), init_(false), mask_(mask), block_files_(path), - unit_test_(false), restarted_(false), max_size_(0) {} + : path_(path), block_files_(path), mask_(mask), max_size_(0), + init_(false), restarted_(false), unit_test_(false) {} ~BackendImpl(); // Performs general initialization for this current instance of the cache. |