1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright (c) 2012 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 <vector>
#include "ipc/ipc_message.h"
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_param_traits.h"
#include "third_party/skia/include/core/SkBitmap.h"
#define IPC_MESSAGE_START ImageMsgStart
// Messages sent from the browser to the renderer.
// Requests the renderer to download the specified image, decode it,
// and send the image data back via ImageHostMsg_DidDownloadImage.
IPC_MESSAGE_ROUTED5(ImageMsg_DownloadImage,
int /* identifier for the request */,
GURL /* URL of the image */,
bool /* is favicon (turn off cookies) */,
uint32_t /* Preferred image size. Passed on to
ImageHostMsg_DidDownloadFavicon, unused
otherwise */,
uint32_t /* Maximal image size. Filter result with it, and
resize resulting image if no bitmap fit. 0 means
unlimited. */)
// Messages sent from the renderer to the browser.
IPC_MESSAGE_ROUTED5(ImageHostMsg_DidDownloadImage,
int /* Identifier of the request */,
int /* HTTP response status */,
GURL /* URL of the image */,
uint32_t /* Preferred image size passed to
ImageMsg_DownloadImage */,
std::vector<SkBitmap> /* image_data */)
|