| Index: content/child/npapi/plugin_url_fetcher.cc
|
| diff --git a/content/child/npapi/plugin_url_fetcher.cc b/content/child/npapi/plugin_url_fetcher.cc
|
| index b0ed299b0f7efcccadb6d38dade7f0cc2edaad9d..ff3e79884dfc89e3b9cde0c55dd5b429690a6d05 100644
|
| --- a/content/child/npapi/plugin_url_fetcher.cc
|
| +++ b/content/child/npapi/plugin_url_fetcher.cc
|
| @@ -46,7 +46,7 @@ class MultiPartResponseClient : public blink::WebURLLoaderClient {
|
| // blink::WebURLLoaderClient implementation:
|
| virtual void didReceiveResponse(
|
| blink::WebURLLoader* loader,
|
| - const blink::WebURLResponse& response) OVERRIDE {
|
| + const blink::WebURLResponse& response) override {
|
| int64 byte_range_upper_bound, instance_size;
|
| if (!MultipartResponseDelegate::ReadContentRanges(response,
|
| &byte_range_lower_bound_,
|
| @@ -58,7 +58,7 @@ class MultiPartResponseClient : public blink::WebURLLoaderClient {
|
| virtual void didReceiveData(blink::WebURLLoader* loader,
|
| const char* data,
|
| int data_length,
|
| - int encoded_data_length) OVERRIDE {
|
| + int encoded_data_length) override {
|
| // TODO(ananta)
|
| // We should defer further loads on multipart resources on the same lines
|
| // as regular resources requested by plugins to prevent reentrancy.
|
|
|