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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp

Issue 2655143002: Drop replacesCurrentHistoryItem, NavigationType (Closed)
Patch Set: More compile fixes 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
Index: third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
index 70bb5a0e757a2c75b81ca80daa48adb2a86e2f3f..80292d84d7790a31a8a2c31c6013ecfa50e2ec94 100644
--- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
@@ -431,7 +431,8 @@ void HTMLAnchorElement::handleClick(Event* event) {
request.setRequestorOrigin(SecurityOrigin::create(document().url()));
frame->loader().client()->loadURLExternally(
- request, NavigationPolicyDownload, suggestedName, false);
+ request, NavigationPolicyDownload, suggestedName,
+ FrameLoadTypeStandard);
} else {
request.setRequestContext(WebURLRequest::RequestContextHyperlink);
FrameLoadRequest frameRequest(&document(), request,

Powered by Google App Engine
This is Rietveld 408576698