| Index: content/browser/appcache/appcache_response.h
|
| diff --git a/content/browser/appcache/appcache_response.h b/content/browser/appcache/appcache_response.h
|
| index a4c87db3d562ac7b97b6ffa9ae53a35743b277c5..8d6c79060bdcf2eb76ac5c4870d90fcdc36e089d 100644
|
| --- a/content/browser/appcache/appcache_response.h
|
| +++ b/content/browser/appcache/appcache_response.h
|
| @@ -209,9 +209,8 @@
|
| // negative error code or the number of bytes written. The 'callback' is a
|
| // required parameter. The contents of 'info_buf' are not modified.
|
| // Should only be called where there is no Write operation in progress.
|
| - // (virtual for testing)
|
| - virtual void WriteInfo(HttpResponseInfoIOBuffer* info_buf,
|
| - const net::CompletionCallback& callback);
|
| + void WriteInfo(HttpResponseInfoIOBuffer* info_buf,
|
| + const net::CompletionCallback& callback);
|
|
|
| // Writes data to storage. Always returns the result of the write
|
| // asynchronously through the 'callback'. Returns the number of bytes written
|
| @@ -221,10 +220,8 @@
|
| // the number of bytes written. The 'callback' is a required parameter.
|
| // The contents of 'buf' are not modified.
|
| // Should only be called where there is no Write operation in progress.
|
| - // (virtual for testing)
|
| - virtual void WriteData(net::IOBuffer* buf,
|
| - int buf_len,
|
| - const net::CompletionCallback& callback);
|
| + void WriteData(net::IOBuffer* buf, int buf_len,
|
| + const net::CompletionCallback& callback);
|
|
|
| // Returns true if there is a write pending.
|
| bool IsWritePending() { return IsIOPending(); }
|
|
|