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

Side by Side Diff: components/security_interstitials/core/browser/resources/interstitial_loud.js

Issue 2894413003: Rename interstitial_v2 files (Closed)
Patch Set: Add the new filenames Created 3 years, 7 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 unified diff | Download patch
OLDNEW
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 var keyPressState = 0; 9 var keyPressState = 0;
10 10
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 }); 163 });
164 } 164 }
165 165
166 preventDefaultOnPoundLinkClicks(); 166 preventDefaultOnPoundLinkClicks();
167 setupExtendedReportingCheckbox(); 167 setupExtendedReportingCheckbox();
168 setupSSLDebuggingInfo(); 168 setupSSLDebuggingInfo();
169 document.addEventListener('keypress', handleKeypress); 169 document.addEventListener('keypress', handleKeypress);
170 } 170 }
171 171
172 document.addEventListener('DOMContentLoaded', setupEvents); 172 document.addEventListener('DOMContentLoaded', setupEvents);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698