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

Side by Side Diff: chrome/common/prerender_messages.h

Issue 9416031: Prerendered pages are swapped in at browser::Navigate time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More cleanup Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Multiply-included message file, no traditional include guard.
6 #include "ipc/ipc_message.h"
7 #include "ipc/ipc_message_macros.h"
8 #include "ipc/ipc_param_traits.h"
9
10 #define IPC_MESSAGE_START PrerenderMsgStart
11
12 // Tells a renderer if it's currently being prerendered. Must only be set
13 // to true before any navigation occurs, and only set to false at most once
14 // after that.
15 IPC_MESSAGE_ROUTED1(PrerenderMsg_SetIsPrerendering,
16 bool /* whether the RenderView is prerendering */)
17
18 IPC_MESSAGE_CONTROL1(PrerenderMsg_AddPrerenderURL,
19 GURL /* url */)
20
21 IPC_MESSAGE_CONTROL1(PrerenderMsg_RemovePrerenderURL,
22 GURL /* url */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698