summaryrefslogtreecommitdiffstats
path: root/webkit/blob/view_blob_internals_job.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/blob/view_blob_internals_job.h')
-rw-r--r--webkit/blob/view_blob_internals_job.h3
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);
};