Index: net/disk_cache/file.h |
diff --git a/net/disk_cache/file.h b/net/disk_cache/file.h |
index c266311392618275bb258753ccc1e3b4737123aa..129c3dd82da57ec10c001c3af416f40c794ae460 100644 |
--- a/net/disk_cache/file.h |
+++ b/net/disk_cache/file.h |
@@ -18,11 +18,11 @@ namespace disk_cache { |
// This interface is used to support asynchronous ReadData and WriteData calls. |
class FileIOCallback { |
public: |
+ virtual ~FileIOCallback() {} |
+ |
// Notified of the actual number of bytes read or written. This value is |
// negative if an error occurred. |
virtual void OnFileIOComplete(int bytes_copied) = 0; |
- |
- virtual ~FileIOCallback() {} |
}; |
// Simple wrapper around a file that allows asynchronous operations. |