summaryrefslogtreecommitdiff
path: root/chrome/common/prefetch_messages.h
blob: e4f691ac1f4e156741870b6f19b23a2d1c6e8ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Multiply-included message file, no traditional include guard.
#include "ipc/ipc_message.h"
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_param_traits.h"
#include "url/gurl.h"

#define IPC_MESSAGE_START PrefetchMsgStart

// Prefetch Messages
// These are messages sent from the browser to the renderer related to
// prefetching.

// Instructs the renderer to launch a prefetch within its context.
IPC_MESSAGE_ROUTED1(PrefetchMsg_Prefetch,
                    GURL /* url */)