| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 1978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1989 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, | 1989 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, |
| 1990 std::string /* action */) | 1990 std::string /* action */) |
| 1991 | 1991 |
| 1992 // Notifies the browser that the page was or was not saved as MHTML. | 1992 // Notifies the browser that the page was or was not saved as MHTML. |
| 1993 IPC_MESSAGE_CONTROL2(ViewHostMsg_SavedPageAsMHTML, | 1993 IPC_MESSAGE_CONTROL2(ViewHostMsg_SavedPageAsMHTML, |
| 1994 int /* job_id */, | 1994 int /* job_id */, |
| 1995 int64 /* size of the MHTML file, -1 if error */) | 1995 int64 /* size of the MHTML file, -1 if error */) |
| 1996 | 1996 |
| 1997 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, | 1997 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, |
| 1998 std::vector<GURL> /* all savable resource links */, | 1998 std::vector<GURL> /* all savable resource links */, |
| 1999 std::vector<GURL> /* all referrers of resource links */, | 1999 std::vector<content::Referrer> /* all referrers */, |
| 2000 std::vector<GURL> /* all frame links */) | 2000 std::vector<GURL> /* all frame links */) |
| 2001 | 2001 |
| 2002 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, | 2002 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, |
| 2003 GURL /* frame's url */, | 2003 GURL /* frame's url */, |
| 2004 std::string /* data buffer */, | 2004 std::string /* data buffer */, |
| 2005 int32 /* complete status */) | 2005 int32 /* complete status */) |
| 2006 | 2006 |
| 2007 // Notifies the browser of an event occurring in the media pipeline. | 2007 // Notifies the browser of an event occurring in the media pipeline. |
| 2008 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, | 2008 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, |
| 2009 media::MediaLogEvent /* event */) | 2009 media::MediaLogEvent /* event */) |
| (...skipping 18 matching lines...) Expand all Loading... |
| 2028 int /* automation_id */) | 2028 int /* automation_id */) |
| 2029 | 2029 |
| 2030 // Sent to the browser when the renderer detects it is blocked on a pepper | 2030 // Sent to the browser when the renderer detects it is blocked on a pepper |
| 2031 // plugin message for too long. This is also sent when it becomes unhung | 2031 // plugin message for too long. This is also sent when it becomes unhung |
| 2032 // (according to the value of is_hung). The browser can give the user the | 2032 // (according to the value of is_hung). The browser can give the user the |
| 2033 // option of killing the plugin. | 2033 // option of killing the plugin. |
| 2034 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2034 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2035 int /* plugin_child_id */, | 2035 int /* plugin_child_id */, |
| 2036 FilePath /* path */, | 2036 FilePath /* path */, |
| 2037 bool /* is_hung */) | 2037 bool /* is_hung */) |
| OLD | NEW |