OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This is the shared code for the new (Chrome 37) security interstitials. It is | 5 // This is the shared code for the new (Chrome 37) security interstitials. It is |
6 // used for both SSL interstitials and Safe Browsing interstitials. | 6 // used for both SSL interstitials and Safe Browsing interstitials. |
7 | 7 |
8 var expandedDetails = false; | 8 var expandedDetails = false; |
9 | 9 |
10 function setupEvents() { | 10 function setupEvents() { |
11 var overridable = loadTimeData.getBoolean('overridable'); | 11 var overridable = loadTimeData.getBoolean('overridable'); |
12 var ssl = loadTimeData.getBoolean('ssl'); | 12 var ssl = loadTimeData.getBoolean('ssl'); |
13 | 13 |
14 if (ssl) | 14 if (ssl) { |
15 $('body').classList.add('ssl'); | 15 $('body').classList.add('ssl'); |
16 else | 16 } else { |
17 $('body').classList.add('safe-browsing'); | 17 $('body').classList.add('safe-browsing'); |
| 18 setupMalwareFinchExperiment(); |
| 19 } |
18 | 20 |
19 $('primary-button').addEventListener('click', function() { | 21 $('primary-button').addEventListener('click', function() { |
20 if (!ssl) | 22 if (!ssl) |
21 sendCommand(SB_CMD_TAKE_ME_BACK); | 23 sendCommand(SB_CMD_TAKE_ME_BACK); |
22 else if (overridable) | 24 else if (overridable) |
23 sendCommand(CMD_DONT_PROCEED); | 25 sendCommand(CMD_DONT_PROCEED); |
24 else | 26 else |
25 sendCommand(CMD_RELOAD); | 27 sendCommand(CMD_RELOAD); |
26 }); | 28 }); |
27 | 29 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 sendCommand(ssl ? CMD_MORE : SB_CMD_EXPANDED_SEE_MORE); | 64 sendCommand(ssl ? CMD_MORE : SB_CMD_EXPANDED_SEE_MORE); |
63 expandedDetails = true; | 65 expandedDetails = true; |
64 } | 66 } |
65 }); | 67 }); |
66 | 68 |
67 preventDefaultOnPoundLinkClicks(); | 69 preventDefaultOnPoundLinkClicks(); |
68 setupCheckbox(); | 70 setupCheckbox(); |
69 } | 71 } |
70 | 72 |
71 document.addEventListener('DOMContentLoaded', setupEvents); | 73 document.addEventListener('DOMContentLoaded', setupEvents); |
OLD | NEW |