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

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

Issue 334483004: Enable resource prefetch from the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: jochen's nits Created 6 years, 6 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) 2012 The Chromium Authors. All rights reserved.
jkarlin 2014/06/17 10:15:33 2014
tburkard 2014/06/17 10:46:52 Done.
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 #include "url/gurl.h"
10
11 #define IPC_MESSAGE_START PrefetchMsgStart
12
13 // Prefetch Messages
14 // These are messages sent from the browser to the renderer related to
15 // prefetching.
16
17 // Instructs the renderer to launch a prefetch within its context.
18 IPC_MESSAGE_ROUTED1(PrefetchMsg_Prefetch,
19 GURL /* url */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698