2 * Copyright (C) 2009 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #ifndef WebURLLoaderClient_h
32 #define WebURLLoaderClient_h
34 #include "public/platform/WebCommon.h"
35 #include "public/platform/WebDataConsumerHandle.h"
44 class BLINK_PLATFORM_EXPORT WebURLLoaderClient
{
46 // Called when following a redirect. |newRequest| contains the request
47 // generated by the redirect. The client may modify |newRequest|.
48 virtual void willSendRequest(
49 WebURLLoader
*, WebURLRequest
& newRequest
, const WebURLResponse
& redirectResponse
) { }
51 // Called to report upload progress. The bytes reported correspond to
52 // the HTTP message body.
53 virtual void didSendData(
54 WebURLLoader
*, unsigned long long bytesSent
, unsigned long long totalBytesToBeSent
) { }
56 // Called when response headers are received.
57 virtual void didReceiveResponse(WebURLLoader
*, const WebURLResponse
&) { }
59 // Called when response headers are received.
60 // The ownership of |handle| is transferred to the callee.
61 virtual void didReceiveResponse(WebURLLoader
* loader
, const WebURLResponse
& response
, WebDataConsumerHandle
* handle
)
64 didReceiveResponse(loader
, response
);
67 // Called when a chunk of response data is downloaded. This is only called
68 // if WebURLRequest's downloadToFile flag was set to true.
69 virtual void didDownloadData(WebURLLoader
*, int dataLength
, int encodedDataLength
) { }
71 // Called when a chunk of response data is received.
72 virtual void didReceiveData(WebURLLoader
*, const char* data
, int dataLength
, int encodedDataLength
) { }
74 // Called when a chunk of renderer-generated metadata is received from the cache.
75 virtual void didReceiveCachedMetadata(WebURLLoader
*, const char* data
, int dataLength
) { }
77 // Called when the load completes successfully.
78 // |totalEncodedDataLength| may be equal to kUnknownEncodedDataLength.
79 virtual void didFinishLoading(WebURLLoader
* loader
, double finishTime
, int64_t totalEncodedDataLength
) { }
81 // Called when the load completes with an error.
82 virtual void didFail(WebURLLoader
*, const WebURLError
&) { }
84 // Value passed to didFinishLoading when total encoded data length isn't known.
85 static const int64_t kUnknownEncodedDataLength
= -1;
88 virtual ~WebURLLoaderClient() { }