| Index: content/renderer/pepper/pepper_url_loader_host.cc
|
| diff --git a/content/renderer/pepper/pepper_url_loader_host.cc b/content/renderer/pepper/pepper_url_loader_host.cc
|
| index e6a2b5c036559f6a67ab0957934e57d8e488d557..924ec028cfd8d9f81293e15e1a3d9f5fcf39703a 100644
|
| --- a/content/renderer/pepper/pepper_url_loader_host.cc
|
| +++ b/content/renderer/pepper/pepper_url_loader_host.cc
|
| @@ -21,13 +21,12 @@
|
| #include "third_party/WebKit/public/platform/WebURLResponse.h"
|
| #include "third_party/WebKit/public/web/WebDocument.h"
|
| #include "third_party/WebKit/public/web/WebElement.h"
|
| -#include "third_party/WebKit/public/web/WebFrame.h"
|
| #include "third_party/WebKit/public/web/WebKit.h"
|
| #include "third_party/WebKit/public/web/WebPluginContainer.h"
|
| #include "third_party/WebKit/public/web/WebSecurityOrigin.h"
|
| #include "third_party/WebKit/public/web/WebURLLoaderOptions.h"
|
|
|
| -using blink::WebFrame;
|
| +using blink::WebLocalFrame;
|
| using blink::WebString;
|
| using blink::WebURL;
|
| using blink::WebURLError;
|
| @@ -248,7 +247,7 @@ int32_t PepperURLLoaderHost::InternalOnHostMsgOpen(
|
| if (loader_.get())
|
| return PP_ERROR_INPROGRESS;
|
|
|
| - WebFrame* frame = GetFrame();
|
| + WebLocalFrame* frame = GetFrame();
|
| if (!frame)
|
| return PP_ERROR_FAILED;
|
|
|
| @@ -368,7 +367,7 @@ void PepperURLLoaderHost::Close() {
|
| GetFrame()->stopLoading();
|
| }
|
|
|
| -blink::WebFrame* PepperURLLoaderHost::GetFrame() {
|
| +blink::WebLocalFrame* PepperURLLoaderHost::GetFrame() {
|
| PepperPluginInstance* instance_object =
|
| renderer_ppapi_host_->GetPluginInstance(pp_instance());
|
| if (!instance_object)
|
|
|