summaryrefslogtreecommitdiffstats
path: root/chrome/common/prerender_messages.h
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-11 02:48:22 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-11 02:48:22 +0000
commit361a9de50639fe9fcee224ad4aace100996ff30d (patch)
treed50b3bd1aca63c0da131a098a2cae3dab0189428 /chrome/common/prerender_messages.h
parentd607966215072a915be594df5406e5a974e028dc (diff)
downloadchromium_src-361a9de50639fe9fcee224ad4aace100996ff30d.zip
chromium_src-361a9de50639fe9fcee224ad4aace100996ff30d.tar.gz
chromium_src-361a9de50639fe9fcee224ad4aace100996ff30d.tar.bz2
Revert of Add <link rel=next> support to prerender. (https://codereview.chromium.org/113803003/)
Reason for revert: Linux ASAN Tests (2) run 22831 failed with leaks in the RelNextByFieldTrial test. Original issue's description: > Add <link rel=next> support to prerender. > > IEs prerender implementation supports rel=next link elements. Let's > also parse them, and based on a field trial launch these as > prerenders. > > R=davidben,tburkard,jochen,jschuh@chromium.org > BUG=329963 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=250280 TBR=davidben@google.com,jochen@chromium.org,tburkard@chromium.org,davidben@chromium.org,jschuh@chromium.org+,jschuh@chromium.org,gavinp@chromium.org NOTREECHECKS=true NOTRY=true BUG=329963 Review URL: https://codereview.chromium.org/145073009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250299 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/prerender_messages.h')
-rw-r--r--chrome/common/prerender_messages.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/chrome/common/prerender_messages.h b/chrome/common/prerender_messages.h
index 21ce045..2b0310c 100644
--- a/chrome/common/prerender_messages.h
+++ b/chrome/common/prerender_messages.h
@@ -18,16 +18,11 @@
// 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 */,
- PrerenderAttributes,
+ GURL /* url */,
content::Referrer,
gfx::Size,
int /* render_view_route_id of launcher */)