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

Unified Diff: chrome/renderer/render_view.cc

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: use system srp and mpi libs, not local copies Created 9 years, 8 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/renderer/render_view.cc
diff --git a/chrome/renderer/render_view.cc b/chrome/renderer/render_view.cc
index 964e29241e65f57823f9a33b789adc50a680cdc4..5e2a59e54cd742411c77098c3ee8888f6f00241e 100644
--- a/chrome/renderer/render_view.cc
+++ b/chrome/renderer/render_view.cc
@@ -5696,7 +5696,8 @@ bool RenderView::IsNonLocalTopLevelNavigation(
// 3. The origin of the url and the opener is the same in which case the
// opener relationship is maintained.
// 4. Reloads/form submits/back forward navigations
- if (!url.SchemeIs("http") && !url.SchemeIs("https"))
+ if (!url.SchemeIs("http") && !url.SchemeIs("https") &&
+ !url.SchemeIs("httpsv"))
return false;
// Not interested in reloads/form submits/resubmits/back forward navigations.

Powered by Google App Engine
This is Rietveld 408576698