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

Side by Side Diff: content/common/view_messages.h

Issue 7387010: Add PluginServiceFilter interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add resource_context Created 9 years, 4 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
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after
1531 GURL /* policy_url */, 1531 GURL /* policy_url */,
1532 std::string /* mime_type */, 1532 std::string /* mime_type */,
1533 bool /* found */, 1533 bool /* found */,
1534 webkit::npapi::WebPluginInfo /* plugin info */, 1534 webkit::npapi::WebPluginInfo /* plugin info */,
1535 std::string /* actual_mime_type */) 1535 std::string /* actual_mime_type */)
1536 1536
1537 // A renderer sends this to the browser process when it wants to 1537 // A renderer sends this to the browser process when it wants to
1538 // create a plugin. The browser will create the plugin process if 1538 // create a plugin. The browser will create the plugin process if
1539 // necessary, and will return a handle to the channel on success. 1539 // necessary, and will return a handle to the channel on success.
1540 // On error an empty string is returned. 1540 // On error an empty string is returned.
1541 IPC_SYNC_MESSAGE_CONTROL3_2(ViewHostMsg_OpenChannelToPlugin, 1541 IPC_SYNC_MESSAGE_CONTROL4_2(ViewHostMsg_OpenChannelToPlugin,
1542 int /* routing_id */, 1542 int /* routing_id */,
1543 GURL /* url */, 1543 GURL /* url */,
1544 GURL /* policy_url */,
jam 2011/08/01 03:25:44 policy_url is a chrome concept, so it doesn't belo
Bernhard Bauer 2011/08/01 16:06:12 Done.
1544 std::string /* mime_type */, 1545 std::string /* mime_type */,
1545 IPC::ChannelHandle /* channel_handle */, 1546 IPC::ChannelHandle /* channel_handle */,
1546 webkit::npapi::WebPluginInfo /* info */) 1547 webkit::npapi::WebPluginInfo /* info */)
1547 1548
1548 // A renderer sends this to the browser process when it wants to create a 1549 // A renderer sends this to the browser process when it wants to create a
1549 // worker. The browser will create the worker process if necessary, and 1550 // worker. The browser will create the worker process if necessary, and
1550 // will return the route id on success. On error returns MSG_ROUTING_NONE. 1551 // will return the route id on success. On error returns MSG_ROUTING_NONE.
1551 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateWorker, 1552 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateWorker,
1552 ViewHostMsg_CreateWorker_Params, 1553 ViewHostMsg_CreateWorker_Params,
1553 int /* route_id */) 1554 int /* route_id */)
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1996 1997
1997 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, 1998 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks,
1998 std::vector<GURL> /* all savable resource links */, 1999 std::vector<GURL> /* all savable resource links */,
1999 std::vector<GURL> /* all referrers of resource links */, 2000 std::vector<GURL> /* all referrers of resource links */,
2000 std::vector<GURL> /* all frame links */) 2001 std::vector<GURL> /* all frame links */)
2001 2002
2002 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, 2003 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData,
2003 GURL /* frame's url */, 2004 GURL /* frame's url */,
2004 std::string /* data buffer */, 2005 std::string /* data buffer */,
2005 int32 /* complete status */) 2006 int32 /* complete status */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698