Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1274)

Unified Diff: webkit/blob/blob_url_request_job.h

Issue 10066044: RefCounted types should not have public destructors, webkit/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation ordering Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/appcache/view_appcache_internals_job.cc ('k') | webkit/blob/blob_url_request_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/blob/blob_url_request_job.h
diff --git a/webkit/blob/blob_url_request_job.h b/webkit/blob/blob_url_request_job.h
index 1df2619f3b3e1346121821fce4b4a516f616a814..436d0a9639e903d2509a57e83ee5960f4cc06956 100644
--- a/webkit/blob/blob_url_request_job.h
+++ b/webkit/blob/blob_url_request_job.h
@@ -34,7 +34,6 @@ class BLOB_EXPORT BlobURLRequestJob : public net::URLRequestJob {
BlobURLRequestJob(net::URLRequest* request,
BlobData* blob_data,
base::MessageLoopProxy* resolving_message_loop_proxy);
- virtual ~BlobURLRequestJob();
// net::URLRequestJob methods.
virtual void Start() OVERRIDE;
@@ -48,6 +47,9 @@ class BLOB_EXPORT BlobURLRequestJob : public net::URLRequestJob {
virtual void SetExtraRequestHeaders(
const net::HttpRequestHeaders& headers) OVERRIDE;
+ protected:
+ virtual ~BlobURLRequestJob();
+
private:
typedef std::map<size_t, LocalFileReader*> IndexToReaderMap;
« no previous file with comments | « webkit/appcache/view_appcache_internals_job.cc ('k') | webkit/blob/blob_url_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698