diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-23 19:15:01 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-23 19:15:01 +0000 |
commit | 9dd90e58cb52161989caf7fcba35ceada332a05c (patch) | |
tree | ba131fb74c13f8a823b40215ac3f02754900edd4 /net/spdy | |
parent | cfaed54dc81da7803620b184a9837fed43130e5c (diff) | |
download | chromium_src-9dd90e58cb52161989caf7fcba35ceada332a05c.zip chromium_src-9dd90e58cb52161989caf7fcba35ceada332a05c.tar.gz chromium_src-9dd90e58cb52161989caf7fcba35ceada332a05c.tar.bz2 |
Add APIs to expose http cache's metadata and the
the ability to stop caching a given request.
BUG=32406, 22900
TEST=none
Review URL: http://codereview.chromium.org/600167
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39751 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy')
-rw-r--r-- | net/spdy/spdy_network_transaction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/spdy/spdy_network_transaction.h b/net/spdy/spdy_network_transaction.h index 28251ab..a9087e7 100644 --- a/net/spdy/spdy_network_transaction.h +++ b/net/spdy/spdy_network_transaction.h @@ -46,6 +46,7 @@ class SpdyNetworkTransaction : public HttpTransaction { CompletionCallback* callback); virtual bool IsReadyToRestartForAuth() { return false; } virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback); + virtual void StopCaching() {} virtual const HttpResponseInfo* GetResponseInfo() const; virtual LoadState GetLoadState() const; virtual uint64 GetUploadProgress() const; |