weinig@apple.com | fff73c1 | 2010-09-01 21:36:11 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| 14 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 15 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| 17 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 18 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 19 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 20 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 21 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 22 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 | * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
laszlo.1.gombos@nokia.com | 4818396 | 2011-01-28 05:37:44 +0000 | [diff] [blame] | 26 | #include "config.h" |
weinig@apple.com | fff73c1 | 2010-09-01 21:36:11 +0000 | [diff] [blame] | 27 | #include "WKURLResponse.h" |
| 28 | |
weinig@apple.com | b0fa1ed | 2013-12-19 21:32:15 +0000 | [diff] [blame] | 29 | #include "APIURLResponse.h" |
weinig@apple.com | fff73c1 | 2010-09-01 21:36:11 +0000 | [diff] [blame] | 30 | #include "WKAPICast.h" |
darin@apple.com | 5ffbb5c | 2013-09-27 16:39:41 +0000 | [diff] [blame] | 31 | #include <WebCore/URL.h> |
weinig@apple.com | fff73c1 | 2010-09-01 21:36:11 +0000 | [diff] [blame] | 32 | |
| 33 | using namespace WebKit; |
| 34 | |
| 35 | WKTypeID WKURLResponseGetTypeID() |
| 36 | { |
weinig@apple.com | b0fa1ed | 2013-12-19 21:32:15 +0000 | [diff] [blame] | 37 | return toAPI(API::URLResponse::APIType); |
weinig@apple.com | fff73c1 | 2010-09-01 21:36:11 +0000 | [diff] [blame] | 38 | } |
| 39 | |
commit-queue@webkit.org | e696b1f | 2012-08-08 13:18:18 +0000 | [diff] [blame] | 40 | WKURLRef WKURLResponseCopyURL(WKURLResponseRef responseRef) |
| 41 | { |
| 42 | return toCopiedURLAPI(toImpl(responseRef)->resourceResponse().url()); |
| 43 | } |
| 44 | |
commit-queue@webkit.org | 9df6ea1 | 2012-08-08 19:55:37 +0000 | [diff] [blame] | 45 | WKStringRef WKURLResponseCopyMIMEType(WKURLResponseRef responseRef) |
commit-queue@webkit.org | e696b1f | 2012-08-08 13:18:18 +0000 | [diff] [blame] | 46 | { |
| 47 | return toCopiedAPI(toImpl(responseRef)->resourceResponse().mimeType()); |
| 48 | } |
commit-queue@webkit.org | 28fed7f | 2012-08-14 19:49:40 +0000 | [diff] [blame] | 49 | |
| 50 | int32_t WKURLResponseHTTPStatusCode(WKURLResponseRef responseRef) |
| 51 | { |
| 52 | return toImpl(responseRef)->resourceResponse().httpStatusCode(); |
| 53 | } |
commit-queue@webkit.org | 3e84133 | 2012-09-26 16:12:52 +0000 | [diff] [blame] | 54 | |
| 55 | WKStringRef WKURLResponseCopySuggestedFilename(WKURLResponseRef responseRef) |
| 56 | { |
| 57 | return toCopiedAPI(toImpl(responseRef)->resourceResponse().suggestedFilename()); |
| 58 | } |
| 59 | |
| 60 | bool WKURLResponseIsAttachment(WKURLResponseRef responseRef) |
| 61 | { |
| 62 | return toImpl(responseRef)->resourceResponse().isAttachment(); |
| 63 | } |
kenneth@webkit.org | ce9a772 | 2013-01-28 10:31:53 +0000 | [diff] [blame] | 64 | |
| 65 | uint32_t WKURLResponseGetExpectedContentLength(WKURLResponseRef responseRef) |
| 66 | { |
| 67 | return toImpl(responseRef)->resourceResponse().expectedContentLength(); |
| 68 | } |