1e14391e94c850b8bd03680c23b38978db68687a8John Reck/*
2e14391e94c850b8bd03680c23b38978db68687a8John Reck * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
3e14391e94c850b8bd03680c23b38978db68687a8John Reck *
4e14391e94c850b8bd03680c23b38978db68687a8John Reck * Redistribution and use in source and binary forms, with or without
5e14391e94c850b8bd03680c23b38978db68687a8John Reck * modification, are permitted provided that the following conditions
6e14391e94c850b8bd03680c23b38978db68687a8John Reck * are met:
7e14391e94c850b8bd03680c23b38978db68687a8John Reck * 1. Redistributions of source code must retain the above copyright
8e14391e94c850b8bd03680c23b38978db68687a8John Reck *    notice, this list of conditions and the following disclaimer.
9e14391e94c850b8bd03680c23b38978db68687a8John Reck * 2. Redistributions in binary form must reproduce the above copyright
10e14391e94c850b8bd03680c23b38978db68687a8John Reck *    notice, this list of conditions and the following disclaimer in the
11e14391e94c850b8bd03680c23b38978db68687a8John Reck *    documentation and/or other materials provided with the distribution.
12e14391e94c850b8bd03680c23b38978db68687a8John Reck *
13e14391e94c850b8bd03680c23b38978db68687a8John Reck * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
14e14391e94c850b8bd03680c23b38978db68687a8John Reck * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15e14391e94c850b8bd03680c23b38978db68687a8John Reck * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16e14391e94c850b8bd03680c23b38978db68687a8John Reck * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
17e14391e94c850b8bd03680c23b38978db68687a8John Reck * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18e14391e94c850b8bd03680c23b38978db68687a8John Reck * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19e14391e94c850b8bd03680c23b38978db68687a8John Reck * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20e14391e94c850b8bd03680c23b38978db68687a8John Reck * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21e14391e94c850b8bd03680c23b38978db68687a8John Reck * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22e14391e94c850b8bd03680c23b38978db68687a8John Reck * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23e14391e94c850b8bd03680c23b38978db68687a8John Reck */
24e14391e94c850b8bd03680c23b38978db68687a8John Reck
25e14391e94c850b8bd03680c23b38978db68687a8John Reck#ifndef ResourceResponse_h
26e14391e94c850b8bd03680c23b38978db68687a8John Reck#define ResourceResponse_h
27e14391e94c850b8bd03680c23b38978db68687a8John Reck
28e14391e94c850b8bd03680c23b38978db68687a8John Reck#include "ResourceResponseBase.h"
29e14391e94c850b8bd03680c23b38978db68687a8John Reck
30e14391e94c850b8bd03680c23b38978db68687a8John Recknamespace WebCore {
31e14391e94c850b8bd03680c23b38978db68687a8John Reck
32e14391e94c850b8bd03680c23b38978db68687a8John Reckclass ResourceResponse : public ResourceResponseBase {
33e14391e94c850b8bd03680c23b38978db68687a8John Reckpublic:
34e14391e94c850b8bd03680c23b38978db68687a8John Reck    ResourceResponse()
35e14391e94c850b8bd03680c23b38978db68687a8John Reck    {
36e14391e94c850b8bd03680c23b38978db68687a8John Reck    }
37e14391e94c850b8bd03680c23b38978db68687a8John Reck
38e14391e94c850b8bd03680c23b38978db68687a8John Reck    ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
39e14391e94c850b8bd03680c23b38978db68687a8John Reck        : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
40e14391e94c850b8bd03680c23b38978db68687a8John Reck    {
41e14391e94c850b8bd03680c23b38978db68687a8John Reck    }
42e14391e94c850b8bd03680c23b38978db68687a8John Reck
43e14391e94c850b8bd03680c23b38978db68687a8John Reckprivate:
44e14391e94c850b8bd03680c23b38978db68687a8John Reck    friend class ResourceResponseBase;
45e14391e94c850b8bd03680c23b38978db68687a8John Reck
46e14391e94c850b8bd03680c23b38978db68687a8John Reck    PassOwnPtr<CrossThreadResourceResponseData> doPlatformCopyData(PassOwnPtr<CrossThreadResourceResponseData> data) const { return data; }
47e14391e94c850b8bd03680c23b38978db68687a8John Reck    void doPlatformAdopt(PassOwnPtr<CrossThreadResourceResponseData>) { }
48e14391e94c850b8bd03680c23b38978db68687a8John Reck};
49e14391e94c850b8bd03680c23b38978db68687a8John Reck
50e14391e94c850b8bd03680c23b38978db68687a8John Reckstruct CrossThreadResourceResponseData : public CrossThreadResourceResponseDataBase {
51e14391e94c850b8bd03680c23b38978db68687a8John Reck};
52e14391e94c850b8bd03680c23b38978db68687a8John Reck
53e14391e94c850b8bd03680c23b38978db68687a8John Reck} // namespace WebCore
54e14391e94c850b8bd03680c23b38978db68687a8John Reck
55e14391e94c850b8bd03680c23b38978db68687a8John Reck#endif // ResourceResponse_h
56