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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
436 // Information regarding the security of the connection (empty if the | 436 // Information regarding the security of the connection (empty if the |
437 // connection was not secure). | 437 // connection was not secure). |
438 IPC_STRUCT_MEMBER(std::string, security_info) | 438 IPC_STRUCT_MEMBER(std::string, security_info) |
439 | 439 |
440 // The gesture that initiated this navigation. | 440 // The gesture that initiated this navigation. |
441 IPC_STRUCT_MEMBER(NavigationGesture, gesture) | 441 IPC_STRUCT_MEMBER(NavigationGesture, gesture) |
442 | 442 |
443 // True if this was a post request. | 443 // True if this was a post request. |
444 IPC_STRUCT_MEMBER(bool, is_post) | 444 IPC_STRUCT_MEMBER(bool, is_post) |
445 | 445 |
446 // The POST body identifier. -1 if it doesn't exist. | |
cbentzel
2012/02/01 22:02:13
I considered removing the |is_post| field in favor
| |
447 IPC_STRUCT_MEMBER(int64, post_id) | |
448 | |
446 // Whether the frame navigation resulted in no change to the documents within | 449 // Whether the frame navigation resulted in no change to the documents within |
447 // the page. For example, the navigation may have just resulted in scrolling | 450 // the page. For example, the navigation may have just resulted in scrolling |
448 // to a named anchor. | 451 // to a named anchor. |
449 IPC_STRUCT_MEMBER(bool, was_within_same_page) | 452 IPC_STRUCT_MEMBER(bool, was_within_same_page) |
450 | 453 |
451 // The status code of the HTTP request. | 454 // The status code of the HTTP request. |
452 IPC_STRUCT_MEMBER(int, http_status_code) | 455 IPC_STRUCT_MEMBER(int, http_status_code) |
453 | 456 |
454 // True if the connection was proxied. In this case, socket_address | 457 // True if the connection was proxied. In this case, socket_address |
455 // will represent the address of the proxy, rather than the remote host. | 458 // will represent the address of the proxy, rather than the remote host. |
(...skipping 1537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1993 media::MediaLogEvent /* event */) | 1996 media::MediaLogEvent /* event */) |
1994 | 1997 |
1995 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1998 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1996 // being sent back. | 1999 // being sent back. |
1997 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 2000 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1998 | 2001 |
1999 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 2002 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
2000 // whenever the mouse is unlocked (which may or may not be caused by | 2003 // whenever the mouse is unlocked (which may or may not be caused by |
2001 // ViewHostMsg_UnlockMouse). | 2004 // ViewHostMsg_UnlockMouse). |
2002 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 2005 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |