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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_sign_in_delegate.cc

Issue 123363002: rAc: don't open sign in continue url in new tab (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unit test Created 6 years, 12 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: chrome/browser/ui/autofill/autofill_dialog_sign_in_delegate.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_sign_in_delegate.cc b/chrome/browser/ui/autofill/autofill_dialog_sign_in_delegate.cc
index 877063376b656b66c2f39f715ed6a03d6d38f4f4..987a0a8ff83cfefb07db589302e8467eac02fc54 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_sign_in_delegate.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_sign_in_delegate.cc
@@ -21,8 +21,7 @@ using content::OpenURLParams;
// Signals if |params| require opening inside the current WebContents.
bool IsInPageTransition(const OpenURLParams& params) {
- return params.transition == content::PAGE_TRANSITION_LINK &&
- params.disposition == CURRENT_TAB;
+ return params.disposition == CURRENT_TAB;
}
// Indicates if the open action specified by |params| should happen in the

Powered by Google App Engine
This is Rietveld 408576698