| Index: net/disk_cache/blockfile/file.cc
|
| diff --git a/net/disk_cache/blockfile/file.cc b/net/disk_cache/blockfile/file.cc
|
| index 17c77a4e099ec72a3fad167a6b89e307bb05f4f0..482748fe381ff10266711df4e88bcbedc724d99b 100644
|
| --- a/net/disk_cache/blockfile/file.cc
|
| +++ b/net/disk_cache/blockfile/file.cc
|
| @@ -9,8 +9,10 @@ namespace disk_cache {
|
| // Cross platform constructors. Platform specific code is in
|
| // file_{win,posix}.cc.
|
|
|
| -File::File() : init_(false), mixed_(false) {}
|
| +File::File() : init_(false), mixed_(false) {
|
| +}
|
|
|
| -File::File(bool mixed_mode) : init_(false), mixed_(mixed_mode) {}
|
| +File::File(bool mixed_mode) : init_(false), mixed_(mixed_mode) {
|
| +}
|
|
|
| } // namespace disk_cache
|
|
|