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

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp

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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 if (m_webFrame->client()) 655 if (m_webFrame->client())
656 m_webFrame->client()->didDetectXSS(insecureURL, didBlockEntirePage); 656 m_webFrame->client()->didDetectXSS(insecureURL, didBlockEntirePage);
657 } 657 }
658 658
659 void FrameLoaderClientImpl::didDispatchPingLoader(const KURL& url) 659 void FrameLoaderClientImpl::didDispatchPingLoader(const KURL& url)
660 { 660 {
661 if (m_webFrame->client()) 661 if (m_webFrame->client())
662 m_webFrame->client()->didDispatchPingLoader(url); 662 m_webFrame->client()->didDispatchPingLoader(url);
663 } 663 }
664 664
665 void FrameLoaderClientImpl::didDisplayContentWithCertificateErrors(const KURL& u rl, const CString& securityInfo) 665 void FrameLoaderClientImpl::didDisplayContentWithCertificateErrors(const KURL& u rl)
666 { 666 {
667 if (m_webFrame->client()) 667 if (m_webFrame->client())
668 m_webFrame->client()->didDisplayContentWithCertificateErrors(url, securi tyInfo); 668 m_webFrame->client()->didDisplayContentWithCertificateErrors(url);
669 } 669 }
670 670
671 void FrameLoaderClientImpl::didRunContentWithCertificateErrors(const KURL& url, const CString& securityInfo) 671 void FrameLoaderClientImpl::didRunContentWithCertificateErrors(const KURL& url)
672 { 672 {
673 if (m_webFrame->client()) 673 if (m_webFrame->client())
674 m_webFrame->client()->didRunContentWithCertificateErrors(url, securityIn fo); 674 m_webFrame->client()->didRunContentWithCertificateErrors(url);
675 } 675 }
676 676
677 void FrameLoaderClientImpl::didChangePerformanceTiming() 677 void FrameLoaderClientImpl::didChangePerformanceTiming()
678 { 678 {
679 if (m_webFrame->client()) 679 if (m_webFrame->client())
680 m_webFrame->client()->didChangePerformanceTiming(); 680 m_webFrame->client()->didChangePerformanceTiming();
681 } 681 }
682 682
683 void FrameLoaderClientImpl::didObserveLoadingBehavior(WebLoadingBehaviorFlag beh avior) 683 void FrameLoaderClientImpl::didObserveLoadingBehavior(WebLoadingBehaviorFlag beh avior)
684 { 684 {
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 { 1004 {
1005 return WebLocalFrameImpl::fromFrame(m_webFrame->frame()->localFrameRoot())-> devToolsAgentImpl(); 1005 return WebLocalFrameImpl::fromFrame(m_webFrame->frame()->localFrameRoot())-> devToolsAgentImpl();
1006 } 1006 }
1007 1007
1008 KURL FrameLoaderClientImpl::overrideFlashEmbedWithHTML(const KURL& url) 1008 KURL FrameLoaderClientImpl::overrideFlashEmbedWithHTML(const KURL& url)
1009 { 1009 {
1010 return m_webFrame->client()->overrideFlashEmbedWithHTML(WebURL(url)); 1010 return m_webFrame->client()->overrideFlashEmbedWithHTML(WebURL(url));
1011 } 1011 }
1012 1012
1013 } // namespace blink 1013 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/FrameLoaderClientImpl.h ('k') | third_party/WebKit/public/platform/WebURLResponse.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698