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

Side by Side Diff: android_webview/common/render_view_messages.h

Issue 10890024: Implement DocuementHasImages (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 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
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 file, no traditional include guard.
6 #include "ipc/ipc_channel_handle.h"
7 #include "ipc/ipc_message_macros.h"
8 #include "ipc/ipc_platform_file.h"
9
10 // Singly-included section for enums and custom IPC traits.
11 #ifndef ANDROID_WEBVIEW_COMMON_RENDER_VIEW_MESSAGES_H_
12 #define ANDROID_WEBVIEW_COMMON_RENDER_VIEW_MESSAGES_H_
13
14
15 namespace IPC {
16
17
18 } // namespace IPC
19
20 #endif // ANDROID_WEBVIEW_COMMON_RENDER_VIEW_MESSAGES_H_
21
22 #define IPC_MESSAGE_START AndroidWebViewMsgStart
23
24 //-----------------------------------------------------------------------------
25 // RenderView messages
26 // These are messages sent from the browser to the renderer process.
27
28 // Request for the renderer to determine if the document contains any image
29 // elements. The id should be passed in the response message so the response
30 // can be associated with the request.
31 IPC_MESSAGE_ROUTED1(AwViewMsg_DocumentHasImages,
32 int /* id */)
33
34 //-----------------------------------------------------------------------------
35 // RenderView messages
36 // These are messages sent from the renderer to the browser process.
37
38 // Response to AwViewMsg_DocumentHasImages request.
39 IPC_MESSAGE_ROUTED2(AwViewHostMsg_DocumentHasImagesResponse,
40 int, /* id */
41 bool /* has_images */)
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698