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

Unified Diff: chrome/browser/resources/ssl/interstitial_v2.js

Issue 341653006: Add experimental versions of the SSL interstitial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: indent Created 6 years, 6 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/resources/ssl/interstitial_v2.js
diff --git a/chrome/browser/resources/ssl/interstitial_v2.js b/chrome/browser/resources/ssl/interstitial_v2.js
index 52becaf8e58a88665c97a889ad623347ae3669bf..c1f5b92ae10898c9d8a16d379d431feb69433d50 100644
--- a/chrome/browser/resources/ssl/interstitial_v2.js
+++ b/chrome/browser/resources/ssl/interstitial_v2.js
@@ -13,9 +13,10 @@ function setupEvents() {
if (ssl) {
$('body').classList.add('ssl');
+ setupSSLFinchTrial(); /* From ssl_errors_common.js. */
} else {
$('body').classList.add('safe-browsing');
- setupMalwareFinchExperiment();
+ setupMalwareFinchExperiment(); /* From safe_browsing_v3.js. */
}
$('primary-button').addEventListener('click', function() {

Powered by Google App Engine
This is Rietveld 408576698