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

Unified Diff: components/safe_browsing/common/safebrowsing_messages.h

Issue 2837603002: Content API changes to improve DOM stitching in ThreatDetails code. (Closed)
Patch Set: Set output pointers correctly Created 3 years, 8 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: components/safe_browsing/common/safebrowsing_messages.h
diff --git a/components/safe_browsing/common/safebrowsing_messages.h b/components/safe_browsing/common/safebrowsing_messages.h
index 1e03fa10f4504a6ebd48dd7a2ea3e7e6c4ab1167..998b147c8aab6e76cd08d4407eba69480124fa7e 100644
--- a/components/safe_browsing/common/safebrowsing_messages.h
+++ b/components/safe_browsing/common/safebrowsing_messages.h
@@ -40,6 +40,11 @@ IPC_STRUCT_BEGIN(SafeBrowsingHostMsg_ThreatDOMDetails_Node)
// The node's attributes, as a collection of name-value pairs.
IPC_STRUCT_MEMBER(std::vector<safe_browsing::AttributeNameValue>, attributes)
+
+ // If this node represents a Frame or Iframe, then this field is set to the
Charlie Reis 2017/05/05 21:03:07 nit: frame or iframe
lpz 2017/05/10 14:21:09 Done.
+ // routing_id of the renderer that is responsible for rendering the contents
Charlie Reis 2017/05/05 21:03:07 nit: routing ID of the local or remote frame in th
lpz 2017/05/10 14:21:09 Done.
+ // of this frame (to handle OOPIFs).
+ IPC_STRUCT_MEMBER(int, other_frame_routing_id)
Charlie Reis 2017/05/05 21:03:07 child_frame_routing_id
lpz 2017/05/10 14:21:09 Done.
IPC_STRUCT_END()
// SafeBrowsing client-side detection messages sent from the renderer to the

Powered by Google App Engine
This is Rietveld 408576698