Task Manager: Remove goat teleporter.
[chromium-blink-merge.git] / content / test / net / url_request_abort_on_end_job.h
blobfd31e070a6b45093d137cd8a83306e91a27317c7
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 // This class simulates what wininet does when a dns lookup fails.
6 #ifndef CONTENT_TEST_NET_URL_REQUEST_ABORT_ON_END_JOB_H_
7 #define CONTENT_TEST_NET_URL_REQUEST_ABORT_ON_END_JOB_H_
9 #include <string>
11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h"
13 #include "base/memory/weak_ptr.h"
14 #include "net/url_request/url_request_job.h"
16 namespace content {
18 // This url request simulates a network error which occurs immediately after
19 // receiving the very first data.
21 class URLRequestAbortOnEndJob : public net::URLRequestJob {
22 public:
23 static const char k400AbortOnEndUrl[];
25 URLRequestAbortOnEndJob(net::URLRequest* request,
26 net::NetworkDelegate* network_delegate);
28 // net::URLRequestJob
29 virtual void Start() OVERRIDE;
30 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE;
31 virtual void GetResponseInfo(net::HttpResponseInfo* info) OVERRIDE;
32 virtual bool ReadRawData(net::IOBuffer* buf,
33 int buf_size,
34 int* bytes_read) OVERRIDE;
36 static void AddUrlHandler();
38 private:
39 virtual ~URLRequestAbortOnEndJob();
41 void GetResponseInfoConst(net::HttpResponseInfo* info) const;
42 void StartAsync();
44 bool sent_data_;
46 base::WeakPtrFactory<URLRequestAbortOnEndJob> weak_factory_;
48 DISALLOW_COPY_AND_ASSIGN(URLRequestAbortOnEndJob);
51 } // namespace content
53 #endif // CONTENT_TEST_NET_URL_REQUEST_ABORT_ON_END_JOB_H_