summaryrefslogtreecommitdiffstats
path: root/net/url_request/url_request_file_dir_job.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/url_request/url_request_file_dir_job.cc')
-rw-r--r--net/url_request/url_request_file_dir_job.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/url_request/url_request_file_dir_job.cc b/net/url_request/url_request_file_dir_job.cc
index 08fa2b8..421c62a 100644
--- a/net/url_request/url_request_file_dir_job.cc
+++ b/net/url_request/url_request_file_dir_job.cc
@@ -26,14 +26,14 @@ URLRequestFileDirJob::URLRequestFileDirJob(URLRequest* request,
NetworkDelegate* network_delegate,
const base::FilePath& dir_path)
: URLRequestJob(request, network_delegate),
- ALLOW_THIS_IN_INITIALIZER_LIST(lister_(dir_path, this)),
+ lister_(dir_path, this),
dir_path_(dir_path),
canceled_(false),
list_complete_(false),
wrote_header_(false),
read_pending_(false),
read_buffer_length_(0),
- ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) {
+ weak_factory_(this) {
}
void URLRequestFileDirJob::StartAsync() {