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

Unified Diff: third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js

Issue 2639203003: Add certificate error handling to devtools. (Closed)
Patch Set: Fix tests Created 3 years, 9 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: third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js b/third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js
index 157f4182ef97b6a26d1dcace1d83091ea73be06a..45f281c642b0c3e8bd2bed425c4ba3d484bb28a2 100644
--- a/third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js
@@ -108,4 +108,14 @@ Security.SecurityDispatcher = class {
securityState, schemeIsCryptographic, explanations, insecureContentStatus, summary || null);
this._model.dispatchEventToListeners(Security.SecurityModel.Events.SecurityStateChanged, pageSecurityState);
}
+
+
+ /**
+ * @override
+ * @param {number} eventID
+ * @param {string} errorType
+ * @param {string} requestURL
+ */
+ certificateError(eventID, errorType, requestURL) {
+ }
};

Powered by Google App Engine
This is Rietveld 408576698