| Index: net/disk_cache/file.h
|
| diff --git a/net/disk_cache/file.h b/net/disk_cache/file.h
|
| index 43ba5c1b82f9bcedf65c088466a250fc04ae5dd0..c266311392618275bb258753ccc1e3b4737123aa 100644
|
| --- a/net/disk_cache/file.h
|
| +++ b/net/disk_cache/file.h
|
| @@ -29,9 +29,9 @@ class FileIOCallback {
|
| class File : public base::RefCounted<File> {
|
| friend class base::RefCounted<File>;
|
| public:
|
| - File() : init_(false), mixed_(false) {}
|
| + File();
|
| // mixed_mode set to true enables regular synchronous operations for the file.
|
| - explicit File(bool mixed_mode) : init_(false), mixed_(mixed_mode) {}
|
| + explicit File(bool mixed_mode);
|
|
|
| // Initializes the object to use the passed in file instead of opening it with
|
| // the Init() call. No asynchronous operations can be performed with this
|
|
|