diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-07 05:15:44 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-07 05:15:44 +0000 |
commit | df16ed24d3cdb487fa37b7b8cb5d6c74926a95dd (patch) | |
tree | 8ee7f6e768e9b4a4ae1aaf2233c03ea6d96c38a7 /webkit/blob/view_blob_internals_job.h | |
parent | ad25e60d2adfd1eab3d6a56cba82ec864d6db1fc (diff) | |
download | chromium_src-df16ed24d3cdb487fa37b7b8cb5d6c74926a95dd.zip chromium_src-df16ed24d3cdb487fa37b7b8cb5d6c74926a95dd.tar.gz chromium_src-df16ed24d3cdb487fa37b7b8cb5d6c74926a95dd.tar.bz2 |
Fix webkit URLRequestJob subtypes to handle Kill() correctly.
Kill() should prevent calling back into the delegate. So we cancel pending callbacks.
BUG=63692
TEST=existing
Review URL: http://codereview.chromium.org/5545003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68445 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/blob/view_blob_internals_job.h')
-rw-r--r-- | webkit/blob/view_blob_internals_job.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/blob/view_blob_internals_job.h b/webkit/blob/view_blob_internals_job.h index 913531c..2f557ae 100644 --- a/webkit/blob/view_blob_internals_job.h +++ b/webkit/blob/view_blob_internals_job.h @@ -7,6 +7,7 @@ #include <string> +#include "base/task.h" #include "net/url_request/url_request_simple_job.h" namespace net { @@ -30,6 +31,7 @@ class ViewBlobInternalsJob : public URLRequestSimpleJob { std::string* charset, std::string* data) const; virtual bool IsRedirectResponse(GURL* location, int* http_status_code); + virtual void Kill(); private: ~ViewBlobInternalsJob(); @@ -40,6 +42,7 @@ class ViewBlobInternalsJob : public URLRequestSimpleJob { std::string* out); BlobStorageController* blob_storage_controller_; + ScopedRunnableMethodFactory<ViewBlobInternalsJob> method_factory_; DISALLOW_COPY_AND_ASSIGN(ViewBlobInternalsJob); }; |