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

Unified Diff: content/renderer/render_frame_impl.cc

Issue 626913004: Set the ui::PAGE_TRANSITION_CLIENT_REDIRECT flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix namespace Created 6 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_frame_impl.cc
diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
index ffb0cfe11b9ad53199e9b7b2df660f50df16e9b4..47f4ab42a82e08097eada67ee3ae99f53054d6b5 100644
--- a/content/renderer/render_frame_impl.cc
+++ b/content/renderer/render_frame_impl.cc
@@ -2636,6 +2636,10 @@ void RenderFrameImpl::willSendRequest(
InternalDocumentStateData::FromDocumentState(document_state);
NavigationState* navigation_state = document_state->navigation_state();
transition_type = navigation_state->transition_type();
+ if (data_source->isClientRedirect()) {
nasko 2014/11/07 16:50:05 This doesn't seem right, as it picks up the top-le
Fredrik Öhrn 2014/11/10 12:51:57 Fixed.
+ transition_type = static_cast<ui::PageTransition>(
+ transition_type | ui::PAGE_TRANSITION_CLIENT_REDIRECT);
nasko 2014/11/07 16:50:05 Why not use safer pattern that already exists in t
Fredrik Öhrn 2014/11/10 12:51:57 Because I didn't find PageTransitionFromInt to add
nasko 2014/11/10 15:01:44 Why not improve the code then? I would go even a s
+ }
GURL request_url(request.url());
GURL new_url;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698