| Index: webkit/plugins/npapi/webplugin_impl.cc
|
| diff --git a/webkit/plugins/npapi/webplugin_impl.cc b/webkit/plugins/npapi/webplugin_impl.cc
|
| index be988e77db77290e43503422e1a9491edc5e01d5..02038724d6dcb3457bdf0e38f47d47b23f672949 100644
|
| --- a/webkit/plugins/npapi/webplugin_impl.cc
|
| +++ b/webkit/plugins/npapi/webplugin_impl.cc
|
| @@ -115,7 +115,7 @@ class MultiPartResponseClient : public WebURLLoaderClient {
|
| // response.
|
| virtual void didReceiveResponse(
|
| WebURLLoader*, const WebURLResponse& response) {
|
| - int instance_size;
|
| + int64 instance_size;
|
| if (!MultipartResponseDelegate::ReadContentRanges(
|
| response,
|
| &byte_range_lower_bound_,
|
| @@ -153,9 +153,9 @@ class MultiPartResponseClient : public WebURLLoaderClient {
|
| private:
|
| WebURLResponse resource_response_;
|
| // The lower bound of the byte range.
|
| - int byte_range_lower_bound_;
|
| + int64 byte_range_lower_bound_;
|
| // The upper bound of the byte range.
|
| - int byte_range_upper_bound_;
|
| + int64 byte_range_upper_bound_;
|
| // The handler for the data.
|
| WebPluginResourceClient* resource_client_;
|
| };
|
|
|