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

Unified Diff: third_party/WebKit/Source/core/loader/FrameLoaderClient.h

Issue 2315443003: Stop sending serialized SSLStatus to the renderer. (Closed)
Patch Set: self review fix and merge fix Created 4 years, 3 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/core/loader/FrameLoaderClient.h
diff --git a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
index 6dceeae3b93b7ebbed8443d483a5b2e135a358d3..77a3907c8e11df4e5cdbcf05ff97a332865963c2 100644
--- a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
+++ b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
@@ -137,12 +137,10 @@ public:
virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0;
virtual void didDispatchPingLoader(const KURL&) = 0;
- // The frame displayed content with certificate errors with the
- // given URL and security info.
- virtual void didDisplayContentWithCertificateErrors(const KURL&, const CString& securityInfo) = 0;
- // The frame ran content with certificate errors with the given URL
- // and security info.
- virtual void didRunContentWithCertificateErrors(const KURL&, const CString& securityInfo) = 0;
+ // The frame displayed content with certificate errors with given URL.
+ virtual void didDisplayContentWithCertificateErrors(const KURL&) = 0;
+ // The frame ran content with certificate errors with the given URL.
+ virtual void didRunContentWithCertificateErrors(const KURL&) = 0;
// Will be called when |PerformanceTiming| events are updated
virtual void didChangePerformanceTiming() { }

Powered by Google App Engine
This is Rietveld 408576698