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

Unified Diff: chrome/browser/resources/net_internals/main.js

Issue 6793026: Initial support for HSTS certificate locking. This isn't a finished work, but (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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/browser/resources/net_internals/main.js
===================================================================
--- chrome/browser/resources/net_internals/main.js (revision 80507)
+++ chrome/browser/resources/net_internals/main.js (working copy)
@@ -92,6 +92,7 @@
'hstsQueryInput', 'hstsQueryForm',
'hstsQueryOutput',
'hstsAddInput', 'hstsAddForm', 'hstsCheckInput',
+ 'hstsAddPins',
'hstsDeleteInput', 'hstsDeleteForm');
var httpCacheView = new HttpCacheView('httpCacheTabContent',
@@ -324,8 +325,10 @@
chrome.send('hstsQuery', [domain]);
};
-BrowserBridge.prototype.sendHSTSAdd = function(domain, include_subdomains) {
- chrome.send('hstsAdd', [domain, include_subdomains]);
+BrowserBridge.prototype.sendHSTSAdd = function(domain,
+ include_subdomains,
+ pins) {
+ chrome.send('hstsAdd', [domain, include_subdomains, pins]);
};
BrowserBridge.prototype.sendHSTSDelete = function(domain) {

Powered by Google App Engine
This is Rietveld 408576698