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

Unified Diff: content/test/net/url_request_failed_job.h

Issue 567563002: Move url_request_failed_job to net/test/url_request/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix compile error Created 6 years, 3 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 | « content/content_tests.gypi ('k') | content/test/net/url_request_failed_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/net/url_request_failed_job.h
diff --git a/content/test/net/url_request_failed_job.h b/content/test/net/url_request_failed_job.h
deleted file mode 100644
index a6c5a07a3dd3511e40ebf4b3f7f5941c8665bc97..0000000000000000000000000000000000000000
--- a/content/test/net/url_request_failed_job.h
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
-#define CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
-
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "base/memory/weak_ptr.h"
-#include "net/url_request/url_request_job.h"
-#include "url/gurl.h"
-
-namespace content {
-
-// This class simulates a URLRequestJob failing with a given error code while
-// trying to connect.
-class URLRequestFailedJob : public net::URLRequestJob {
- public:
- URLRequestFailedJob(net::URLRequest* request,
- net::NetworkDelegate* network_delegate,
- int net_error);
-
- virtual void Start() OVERRIDE;
-
- // Adds the testing URLs to the net::URLRequestFilter.
- static void AddUrlHandler();
- static void AddUrlHandlerForHostname(const std::string& hostname);
-
- // Given a net error code, constructs a mock URL that will return that error
- // asynchronously when started. |net_error| must be a valid net error code
- // other than net::OK and net::ERR_IO_PENDING.
- static GURL GetMockHttpUrl(int net_error);
- static GURL GetMockHttpsUrl(int net_error);
-
- // URLRequestFailedJob must be added as a handler for |hostname| for
- // the returned URL to return |net_error|.
- static GURL GetMockHttpUrlForHostname(int net_error,
- const std::string& hostname);
- static GURL GetMockHttpsUrlForHostname(int net_error,
- const std::string& hostname);
-
- protected:
- virtual ~URLRequestFailedJob();
-
- private:
- static net::URLRequestJob* Factory(net::URLRequest* request,
- net::NetworkDelegate* network_delegate,
- const std::string& scheme);
-
- // Simulate a failure.
- void StartAsync();
-
- const int net_error_;
-
- base::WeakPtrFactory<URLRequestFailedJob> weak_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(URLRequestFailedJob);
-};
-
-} // namespace content
-
-#endif // CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
« no previous file with comments | « content/content_tests.gypi ('k') | content/test/net/url_request_failed_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698