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

Unified Diff: net/disk_cache/file.h

Issue 3814013: FBTF: Monster ctor patch after changing heuristics in clang plugin. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: More add file fail Created 10 years, 2 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/disk_format.cc ('k') | net/disk_cache/file.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « net/disk_cache/disk_format.cc ('k') | net/disk_cache/file.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698