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

Unified Diff: chrome/renderer/notification_provider.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/notification_provider.cc
diff --git a/chrome/renderer/notification_provider.cc b/chrome/renderer/notification_provider.cc
index e3aeeb173a8138118f4bcf00177053e0fec929a0..1de73c087692f76758b9fcc7c912421cd4edb25d 100644
--- a/chrome/renderer/notification_provider.cc
+++ b/chrome/renderer/notification_provider.cc
@@ -107,6 +107,7 @@ bool NotificationProvider::ShowHTML(const WebNotification& notification,
GURL url = notification.url();
if (!url.SchemeIs(chrome::kHttpScheme) &&
!url.SchemeIs(chrome::kHttpsScheme) &&
+ !url.SchemeIs(chrome::kHttpsvScheme) &&
!url.SchemeIs(chrome::kExtensionScheme) &&
!url.SchemeIs(chrome::kDataScheme))
return false;

Powered by Google App Engine
This is Rietveld 408576698