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

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

Issue 9704023: Replace URLRequestFailedDnsJob with URLRequestFailedJob (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix weak ptr factory usage Created 8 years, 9 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_browser.gypi ('k') | content/test/net/url_request_failed_dns_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_dns_job.h
===================================================================
--- content/test/net/url_request_failed_dns_job.h (revision 126973)
+++ content/test/net/url_request_failed_dns_job.h (working copy)
@@ -1,38 +0,0 @@
-// 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_TEST_NET_URL_REQUEST_FAILED_DNS_JOB_H_
-#define CONTENT_TEST_NET_URL_REQUEST_FAILED_DNS_JOB_H_
-#pragma once
-
-#include "base/memory/weak_ptr.h"
-#include "content/common/content_export.h"
-#include "net/url_request/url_request_job.h"
-
-class URLRequestFailedDnsJob : public net::URLRequestJob {
- public:
- explicit URLRequestFailedDnsJob(net::URLRequest* request);
-
- virtual void Start() OVERRIDE;
-
- static net::URLRequestJob* Factory(net::URLRequest* request,
- const std::string& scheme);
-
- // A test URL that can be used in UI tests.
- CONTENT_EXPORT static const char kTestUrl[];
-
- // Adds the testing URLs to the net::URLRequestFilter.
- CONTENT_EXPORT static void AddUrlHandler();
-
- private:
- virtual ~URLRequestFailedDnsJob();
-
- // Simulate a DNS failure.
- void StartAsync();
-
- base::WeakPtrFactory<URLRequestFailedDnsJob> weak_factory_;
-};
-
-#endif // CONTENT_TEST_NET_URL_REQUEST_FAILED_DNS_JOB_H_
« no previous file with comments | « content/content_browser.gypi ('k') | content/test/net/url_request_failed_dns_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698