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

Unified Diff: chrome/common/prerender_messages.h

Issue 113803003: Add <link rel=next> support to prerender. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix memory leak Created 6 years, 10 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
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/prerender_types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/prerender_messages.h
diff --git a/chrome/common/prerender_messages.h b/chrome/common/prerender_messages.h
index 2b0310c2e277025d36fcab8c3992b8fed2c5206b..21ce04538cae3a9ec5b024ee46c78312c98c77db 100644
--- a/chrome/common/prerender_messages.h
+++ b/chrome/common/prerender_messages.h
@@ -18,11 +18,16 @@
// These are messages sent from the renderer to the browser in
// relation to <link rel=prerender> elements.
+IPC_STRUCT_BEGIN(PrerenderAttributes)
+ IPC_STRUCT_MEMBER(GURL, url)
+ IPC_STRUCT_MEMBER(uint32, rel_types)
+IPC_STRUCT_END()
+
// Notifies of the insertion of a <link rel=prerender> element in the
// document.
IPC_MESSAGE_CONTROL5(PrerenderHostMsg_AddLinkRelPrerender,
int /* prerender_id, assigned by WebPrerendererClient */,
- GURL /* url */,
+ PrerenderAttributes,
content::Referrer,
gfx::Size,
int /* render_view_route_id of launcher */)
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/prerender_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698