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

Unified Diff: content/common/frame_messages.h

Issue 1415923015: Downgrade lock icon for broken-HTTPS subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unnecessary includes Created 5 years, 1 month 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: content/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index a2766fd2f8b50d5f0cd0b10c3260f7348a53feaf..da98e40e247e71fafed566df8c34b1907c6fbb08 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -1212,6 +1212,19 @@ IPC_MESSAGE_ROUTED2(FrameHostMsg_DidRunInsecureContent,
std::string /* security_origin */,
GURL /* target URL */)
+// Sent when the renderer displays content that was loaded with
+// certificate errors.
+IPC_MESSAGE_ROUTED2(FrameHostMsg_DidDisplayContentWithCertificateErrors,
+ GURL /* resource url */,
+ std::string /* serialized security info */)
+
+// Sent when the renderer runs content that was loaded with certificate
+// errors.
+IPC_MESSAGE_ROUTED3(FrameHostMsg_DidRunContentWithCertificateErrors,
+ std::string /* security_origin */,
jww 2015/11/20 01:25:08 While you're digging around in here... :-) Can you
estark 2015/11/23 23:40:24 Done.
+ GURL /* resource url */,
+ std::string /* serialized security info */)
+
// Response to FrameMsg_GetSavableResourceLinks.
IPC_MESSAGE_ROUTED3(FrameHostMsg_SavableResourceLinksResponse,
std::vector<GURL> /* savable resource links */,

Powered by Google App Engine
This is Rietveld 408576698