| Index: third_party/WebKit/public/web/WebFrameClient.h
|
| diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h
|
| index b4b8a74a8b5c643fa364d43ab082f79f6f730e82..a47bc8a43bc9792a09ee027e120df75b34313185 100644
|
| --- a/third_party/WebKit/public/web/WebFrameClient.h
|
| +++ b/third_party/WebKit/public/web/WebFrameClient.h
|
| @@ -300,6 +300,7 @@ class BLINK_EXPORT WebFrameClient {
|
| bool isClientRedirect;
|
| WebFormElement form;
|
| bool isCacheDisabled;
|
| + bool shouldBypassMainWorldCSP;
|
|
|
| NavigationPolicyInfo(WebURLRequest& urlRequest)
|
| : extraData(nullptr),
|
| @@ -309,7 +310,8 @@ class BLINK_EXPORT WebFrameClient {
|
| replacesCurrentHistoryItem(false),
|
| isHistoryNavigationInNewChildFrame(false),
|
| isClientRedirect(false),
|
| - isCacheDisabled(false) {}
|
| + isCacheDisabled(false),
|
| + shouldBypassMainWorldCSP(false) {}
|
| };
|
|
|
| virtual WebNavigationPolicy decidePolicyForNavigation(
|
|
|