net cleanup: Remove unnecessary namespace prefixes.
[chromium-blink-merge.git] / net / url_request / url_fetcher.cc
blobfaf70175deda1477791202abc42bf9454848813f
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.
5 #include "net/url_request/url_fetcher.h"
7 #include "net/url_request/url_fetcher_factory.h"
8 #include "net/url_request/url_fetcher_impl.h"
10 namespace net {
12 URLFetcher::~URLFetcher() {}
14 // static
15 URLFetcher* URLFetcher::Create(const GURL& url,
16 URLFetcher::RequestType request_type,
17 URLFetcherDelegate* d) {
18 return URLFetcher::Create(0, url, request_type, d);
21 // static
22 URLFetcher* URLFetcher::Create(int id,
23 const GURL& url,
24 URLFetcher::RequestType request_type,
25 URLFetcherDelegate* d) {
26 URLFetcherFactory* factory = URLFetcherImpl::factory();
27 return factory ? factory->CreateURLFetcher(id, url, request_type, d)
28 : new URLFetcherImpl(url, request_type, d);
31 // static
32 void URLFetcher::CancelAll() {
33 URLFetcherImpl::CancelAll();
36 // static
37 void URLFetcher::SetIgnoreCertificateRequests(bool ignored) {
38 URLFetcherImpl::SetIgnoreCertificateRequests(ignored);
41 } // namespace net