Chromium Code Reviews| Index: content/browser/net/url_request_abort_on_end_job.h |
| diff --git a/content/browser/net/url_request_abort_on_end_job.h b/content/browser/net/url_request_abort_on_end_job.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..efa84334fe489db3ca8e081fae83de0f3db511c9 |
| --- /dev/null |
| +++ b/content/browser/net/url_request_abort_on_end_job.h |
| @@ -0,0 +1,48 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| +// This class simulates what wininet does when a dns lookup fails. |
| + |
| +#ifndef CONTENT_BROWSER_NET_URL_REQUEST_ABORT_ON_END_JOB_H_ |
| +#define CONTENT_BROWSER_NET_URL_REQUEST_ABORT_ON_END_JOB_H_ |
| +#pragma once |
| + |
| +#include <string> |
| + |
| +#include "base/basictypes.h" |
| +#include "base/compiler_specific.h" |
| +#include "content/common/content_export.h" |
| +#include "net/url_request/url_request_job.h" |
| + |
| +class URLRequestAbortOnEndJob : public net::URLRequestJob { |
| + public: |
| + static const char k400AbortOnEndUrl[]; |
| + |
| + // net::URLRequestJob |
| + virtual void Start() OVERRIDE; |
| + virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; |
| + virtual void GetResponseInfo(net::HttpResponseInfo* info) OVERRIDE; |
| + virtual bool ReadRawData(net::IOBuffer* buf, |
| + int buf_size, |
| + int *bytes_read) OVERRIDE; |
| + |
| + static net::URLRequestJob* Factory(net::URLRequest* request, |
| + const std::string& scheme); |
| + |
| + CONTENT_EXPORT static void AddUrlHandler(); |
| + |
| + private: |
| + explicit URLRequestAbortOnEndJob(net::URLRequest* request); |
| + virtual ~URLRequestAbortOnEndJob(); |
| + |
| + void GetResponseInfoConst(net::HttpResponseInfo* info) const; |
| + void StartAsync(); |
| + |
| + bool sent_data_; |
| + |
| + base::WeakPtrFactory<URLRequestAbortOnEndJob> weak_factory_; |
|
mmenke
2011/10/28 18:32:10
nit: Probably a good idea to include src/base/mem
gavinp
2011/10/31 14:34:02
Done.
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(URLRequestAbortOnEndJob); |
| +}; |
| +#endif |
| + |