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

Unified Diff: net/url_request/url_request_data_job.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 | « net/url_request/url_request_data_job.h ('k') | net/url_request/url_request_data_job_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_data_job.cc
diff --git a/net/url_request/url_request_data_job.cc b/net/url_request/url_request_data_job.cc
deleted file mode 100644
index e0746467079836f42aff97cdbe2029b6e5669eb9..0000000000000000000000000000000000000000
--- a/net/url_request/url_request_data_job.cc
+++ /dev/null
@@ -1,69 +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.
-
-// Simple implementation of a data: protocol handler.
-
-#include "net/url_request/url_request_data_job.h"
-
-#include "net/base/data_url.h"
-#include "net/base/net_errors.h"
-#include "net/http/http_response_headers.h"
-#include "url/gurl.h"
-
-namespace net {
-
-int URLRequestDataJob::BuildResponse(const GURL& url,
- std::string* mime_type,
- std::string* charset,
- std::string* data,
- HttpResponseHeaders* headers) {
- if (!net::DataURL::Parse(url, mime_type, charset, data))
- return net::ERR_INVALID_URL;
-
- // |mime_type| set by net::DataURL::Parse() is guaranteed to be in
- // token "/" token
- // form. |charset| is also guaranteed to be a token.
-
- DCHECK(!mime_type->empty());
- DCHECK(!charset->empty());
-
- if (headers) {
- headers->ReplaceStatusLine("HTTP/1.1 200 OK");
- // "charset" in the Content-Type header is specified explicitly to follow
- // the "token" ABNF in the HTTP spec. When DataURL::Parse() call is
- // successful, it's guaranteed that the string in |charset| follows the
- // "token" ABNF.
- std::string content_type_header =
- "Content-Type: " + *mime_type + ";charset=" + *charset;
- headers->AddHeader(content_type_header);
- headers->AddHeader("Access-Control-Allow-Origin: *");
- }
-
- return net::OK;
-}
-
-URLRequestDataJob::URLRequestDataJob(
- URLRequest* request, NetworkDelegate* network_delegate)
- : URLRequestSimpleJob(request, network_delegate) {
-}
-
-int URLRequestDataJob::GetData(std::string* mime_type,
- std::string* charset,
- std::string* data,
- const CompletionCallback& callback) const {
- // Check if data URL is valid. If not, don't bother to try to extract data.
- // Otherwise, parse the data from the data URL.
- const GURL& url = request_->url();
- if (!url.is_valid())
- return ERR_INVALID_URL;
-
- // TODO(tyoshino): Get the headers and export via
- // URLRequestJob::GetResponseInfo().
- return BuildResponse(url, mime_type, charset, data, NULL);
-}
-
-URLRequestDataJob::~URLRequestDataJob() {
-}
-
-} // namespace net
« no previous file with comments | « net/url_request/url_request_data_job.h ('k') | net/url_request/url_request_data_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698