| 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() { }
|
|
|