| Index: net/disk_cache/simple/simple_entry_impl.h
|
| diff --git a/net/disk_cache/simple/simple_entry_impl.h b/net/disk_cache/simple/simple_entry_impl.h
|
| index 2dfb757e19a5292ea8495ff4155850944ed9b5e5..7c11b9660d0e263b6d865efcca3088a7a2f36d97 100644
|
| --- a/net/disk_cache/simple/simple_entry_impl.h
|
| +++ b/net/disk_cache/simple/simple_entry_impl.h
|
| @@ -80,38 +80,38 @@ class NET_EXPORT_PRIVATE SimpleEntryImpl : public Entry,
|
| void SetKey(const std::string& key);
|
|
|
| // From Entry:
|
| - virtual void Doom() OVERRIDE;
|
| - virtual void Close() OVERRIDE;
|
| - virtual std::string GetKey() const OVERRIDE;
|
| - virtual base::Time GetLastUsed() const OVERRIDE;
|
| - virtual base::Time GetLastModified() const OVERRIDE;
|
| - virtual int32 GetDataSize(int index) const OVERRIDE;
|
| + virtual void Doom() override;
|
| + virtual void Close() override;
|
| + virtual std::string GetKey() const override;
|
| + virtual base::Time GetLastUsed() const override;
|
| + virtual base::Time GetLastModified() const override;
|
| + virtual int32 GetDataSize(int index) const override;
|
| virtual int ReadData(int stream_index,
|
| int offset,
|
| net::IOBuffer* buf,
|
| int buf_len,
|
| - const CompletionCallback& callback) OVERRIDE;
|
| + const CompletionCallback& callback) override;
|
| virtual int WriteData(int stream_index,
|
| int offset,
|
| net::IOBuffer* buf,
|
| int buf_len,
|
| const CompletionCallback& callback,
|
| - bool truncate) OVERRIDE;
|
| + bool truncate) override;
|
| virtual int ReadSparseData(int64 offset,
|
| net::IOBuffer* buf,
|
| int buf_len,
|
| - const CompletionCallback& callback) OVERRIDE;
|
| + const CompletionCallback& callback) override;
|
| virtual int WriteSparseData(int64 offset,
|
| net::IOBuffer* buf,
|
| int buf_len,
|
| - const CompletionCallback& callback) OVERRIDE;
|
| + const CompletionCallback& callback) override;
|
| virtual int GetAvailableRange(int64 offset,
|
| int len,
|
| int64* start,
|
| - const CompletionCallback& callback) OVERRIDE;
|
| - virtual bool CouldBeSparse() const OVERRIDE;
|
| - virtual void CancelSparseIO() OVERRIDE;
|
| - virtual int ReadyForSparseIO(const CompletionCallback& callback) OVERRIDE;
|
| + const CompletionCallback& callback) override;
|
| + virtual bool CouldBeSparse() const override;
|
| + virtual void CancelSparseIO() override;
|
| + virtual int ReadyForSparseIO(const CompletionCallback& callback) override;
|
|
|
| private:
|
| class ScopedOperationRunner;
|
|
|