| 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 f8f38b6e316f363ab6466bd77297e16a52fff228..d596b96a8d2df328ea5e70d96bcfb0e11ca4be49 100644
|
| --- a/content/child/npapi/plugin_url_fetcher.cc
|
| +++ b/content/child/npapi/plugin_url_fetcher.cc
|
| @@ -18,6 +18,7 @@
|
| #include "content/child/web_url_loader_impl.h"
|
| #include "content/common/resource_request_body.h"
|
| #include "content/common/service_worker/service_worker_types.h"
|
| +#include "content/public/common/resource_response_info.h"
|
| #include "net/base/load_flags.h"
|
| #include "net/base/net_errors.h"
|
| #include "net/http/http_response_headers.h"
|
| @@ -25,7 +26,6 @@
|
| #include "third_party/WebKit/public/platform/WebURLResponse.h"
|
| #include "webkit/child/multipart_response_delegate.h"
|
| #include "webkit/child/resource_loader_bridge.h"
|
| -#include "webkit/common/resource_response_info.h"
|
|
|
| namespace content {
|
| namespace {
|
| @@ -191,7 +191,7 @@ void PluginURLFetcher::OnUploadProgress(uint64 position, uint64 size) {
|
| bool PluginURLFetcher::OnReceivedRedirect(
|
| const GURL& new_url,
|
| const GURL& new_first_party_for_cookies,
|
| - const webkit_glue::ResourceResponseInfo& info) {
|
| + const ResourceResponseInfo& info) {
|
| if (!plugin_stream_)
|
| return false;
|
|
|
| @@ -236,8 +236,7 @@ bool PluginURLFetcher::OnReceivedRedirect(
|
| return true;
|
| }
|
|
|
| -void PluginURLFetcher::OnReceivedResponse(
|
| - const webkit_glue::ResourceResponseInfo& info) {
|
| +void PluginURLFetcher::OnReceivedResponse(const ResourceResponseInfo& info) {
|
| if (!plugin_stream_)
|
| return;
|
|
|
|
|