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 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1386 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStartLoading) | 1386 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStartLoading) |
1387 | 1387 |
1388 // Sent when the renderer is done loading a page. This corresponds to WebKit's | 1388 // Sent when the renderer is done loading a page. This corresponds to WebKit's |
1389 // notion of the throbber stopping. | 1389 // notion of the throbber stopping. |
1390 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopLoading) | 1390 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopLoading) |
1391 | 1391 |
1392 // Sent when the renderer main frame has made progress loading. | 1392 // Sent when the renderer main frame has made progress loading. |
1393 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidChangeLoadProgress, | 1393 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidChangeLoadProgress, |
1394 double /* load_progress */) | 1394 double /* load_progress */) |
1395 | 1395 |
1396 // Sent when the document element is available for a frame. This | 1396 // Sent when the document element is available for the toplevel frame. This |
Dan Beam
2012/04/21 02:53:07
shouldn't this be "top-level"?
Evan Stade
2012/04/24 17:52:40
Done.
| |
1397 // happens after the page starts loading, but before all resources are | 1397 // happens after the page starts loading, but before all resources are |
1398 // finished. | 1398 // finished. |
1399 IPC_MESSAGE_ROUTED2(ViewHostMsg_DocumentAvailableInFrame, | 1399 IPC_MESSAGE_ROUTED0(ViewHostMsg_DocumentAvailableInMainFrame) |
1400 bool /* true if it is the main frame */, | |
1401 GURL /* frame_source_url */) | |
1402 | 1400 |
1403 // Sent when after the onload handler has been invoked for the document | 1401 // Sent when after the onload handler has been invoked for the document |
1404 // in the toplevel frame. | 1402 // in the toplevel frame. |
1405 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentOnLoadCompletedInMainFrame, | 1403 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentOnLoadCompletedInMainFrame, |
1406 int32 /* page_id */) | 1404 int32 /* page_id */) |
1407 | 1405 |
1408 // Sent when the renderer loads a resource from its memory cache. | 1406 // Sent when the renderer loads a resource from its memory cache. |
1409 // The security info is non empty if the resource was originally loaded over | 1407 // The security info is non empty if the resource was originally loaded over |
1410 // a secure connection. | 1408 // a secure connection. |
1411 // Note: May only be sent once per URL per frame per committed load. | 1409 // Note: May only be sent once per URL per frame per committed load. |
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2010 int /* automation_id */) | 2008 int /* automation_id */) |
2011 | 2009 |
2012 // Sent to the browser when the renderer detects it is blocked on a pepper | 2010 // Sent to the browser when the renderer detects it is blocked on a pepper |
2013 // plugin message for too long. This is also sent when it becomes unhung | 2011 // plugin message for too long. This is also sent when it becomes unhung |
2014 // (according to the value of is_hung). The browser can give the user the | 2012 // (according to the value of is_hung). The browser can give the user the |
2015 // option of killing the plugin. | 2013 // option of killing the plugin. |
2016 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2014 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2017 int /* plugin_child_id */, | 2015 int /* plugin_child_id */, |
2018 FilePath /* path */, | 2016 FilePath /* path */, |
2019 bool /* is_hung */) | 2017 bool /* is_hung */) |
OLD | NEW |