| Index: third_party/WebKit/public/web/WebRemoteFrameClient.h
|
| diff --git a/third_party/WebKit/public/web/WebRemoteFrameClient.h b/third_party/WebKit/public/web/WebRemoteFrameClient.h
|
| index ae5452527703a11b036bd819b5df206b6479e2ac..980d71359cab148bdb48ddd2789936420959d94e 100644
|
| --- a/third_party/WebKit/public/web/WebRemoteFrameClient.h
|
| +++ b/third_party/WebKit/public/web/WebRemoteFrameClient.h
|
| @@ -8,11 +8,12 @@
|
| #include "public/platform/WebFocusType.h"
|
| #include "public/platform/WebSecurityOrigin.h"
|
| #include "public/web/WebDOMMessageEvent.h"
|
| +#include "public/web/WebFrame.h"
|
|
|
| namespace blink {
|
| class WebInputEvent;
|
| -class WebLocalFrame;
|
| -class WebRemoteFrame;
|
| +enum class WebClientRedirectPolicy;
|
| +enum class WebFrameLoadType;
|
| struct WebRect;
|
|
|
| class WebRemoteFrameClient {
|
| @@ -39,7 +40,7 @@ public:
|
|
|
| // A remote frame was asked to start a navigation.
|
| virtual void navigate(const WebURLRequest& request, bool shouldReplaceCurrentEntry) { }
|
| - virtual void reload(bool ignoreCache, bool isClientRedirect) { }
|
| + virtual void reload(WebFrameLoadType, WebClientRedirectPolicy) {}
|
|
|
| // FIXME: Remove this method once we have input routing in the browser
|
| // process. See http://crbug.com/339659.
|
|
|