Pass CreateDirectory errors up to IndexedDB.
[chromium-blink-merge.git] / net / http / http_util_icu.cc
blob64e7424df1442e015c8b5061d9e0a16a15fe7d78
1 // Copyright (c) 2009 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 // The rules for parsing content-types were borrowed from Firefox:
6 // http://lxr.mozilla.org/mozilla/source/netwerk/base/src/nsURLHelper.cpp#834
8 #include "net/http/http_util.h"
10 #include "base/logging.h"
11 #include "net/base/net_util.h"
13 namespace net {
15 // static
16 std::string HttpUtil::PathForRequest(const GURL& url) {
17 DCHECK(url.is_valid() && (url.SchemeIs("http") || url.SchemeIs("https")));
18 if (url.has_query())
19 return url.path() + "?" + url.query();
20 return url.path();
23 // static
24 std::string HttpUtil::SpecForRequest(const GURL& url) {
25 // We may get ftp scheme when fetching ftp resources through proxy.
26 DCHECK(url.is_valid() && (url.SchemeIs("http") ||
27 url.SchemeIs("https") ||
28 url.SchemeIs("ftp")));
29 return SimplifyUrlForRequest(url).spec();
32 } // namespace net