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

Unified Diff: net/url_request/url_request_file_dir_job.h

Issue 368001: Second patch in making destructors of refcounted objects private. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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
Index: net/url_request/url_request_file_dir_job.h
===================================================================
--- net/url_request/url_request_file_dir_job.h (revision 31079)
+++ net/url_request/url_request_file_dir_job.h (working copy)
@@ -17,7 +17,6 @@
public net::DirectoryLister::DirectoryListerDelegate {
public:
URLRequestFileDirJob(URLRequest* request, const FilePath& dir_path);
- virtual ~URLRequestFileDirJob();
// URLRequestJob methods:
virtual void Start();
@@ -35,6 +34,8 @@
bool list_complete() const { return list_complete_; }
private:
+ virtual ~URLRequestFileDirJob();
+
void CloseLister();
// When we have data and a read has been pending, this function
// will fill the response buffer and notify the request

Powered by Google App Engine
This is Rietveld 408576698