Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1282)

Unified Diff: third_party/WebKit/public/web/WebFrameClient.h

Issue 2611183007: PlzNavigate: Fix for the http/tests/inspector/resource-har-conversion.html layout test failure. (Closed)
Patch Set: Fix line endings Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/public/web/WebDevToolsAgent.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8549e527814fa4ab76f2e35aefc491726a62d4ef..ce7d795a44d058421100201f29c0d360ff81d98c 100644
--- a/third_party/WebKit/public/web/WebFrameClient.h
+++ b/third_party/WebKit/public/web/WebFrameClient.h
@@ -296,6 +296,7 @@ class BLINK_EXPORT WebFrameClient {
bool isHistoryNavigationInNewChildFrame;
bool isClientRedirect;
WebFormElement form;
+ bool isCacheDisabled;
NavigationPolicyInfo(WebURLRequest& urlRequest)
: extraData(nullptr),
@@ -304,7 +305,8 @@ class BLINK_EXPORT WebFrameClient {
defaultPolicy(WebNavigationPolicyIgnore),
replacesCurrentHistoryItem(false),
isHistoryNavigationInNewChildFrame(false),
- isClientRedirect(false) {}
+ isClientRedirect(false),
+ isCacheDisabled(false) {}
};
virtual WebNavigationPolicy decidePolicyForNavigation(
« no previous file with comments | « third_party/WebKit/public/web/WebDevToolsAgent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698