OLD | NEW |
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/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserParams) | 244 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserParams) |
245 IPC_STRUCT_TRAITS_MEMBER(mode) | 245 IPC_STRUCT_TRAITS_MEMBER(mode) |
246 IPC_STRUCT_TRAITS_MEMBER(title) | 246 IPC_STRUCT_TRAITS_MEMBER(title) |
247 IPC_STRUCT_TRAITS_MEMBER(default_file_name) | 247 IPC_STRUCT_TRAITS_MEMBER(default_file_name) |
248 IPC_STRUCT_TRAITS_MEMBER(accept_types) | 248 IPC_STRUCT_TRAITS_MEMBER(accept_types) |
249 IPC_STRUCT_TRAITS_END() | 249 IPC_STRUCT_TRAITS_END() |
250 | 250 |
251 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) | 251 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) |
252 IPC_STRUCT_TRAITS_MEMBER(page_id) | 252 IPC_STRUCT_TRAITS_MEMBER(page_id) |
253 IPC_STRUCT_TRAITS_MEMBER(url) | 253 IPC_STRUCT_TRAITS_MEMBER(url) |
| 254 IPC_STRUCT_TRAITS_MEMBER(base_url) |
254 IPC_STRUCT_TRAITS_MEMBER(referrer) | 255 IPC_STRUCT_TRAITS_MEMBER(referrer) |
255 IPC_STRUCT_TRAITS_MEMBER(transition) | 256 IPC_STRUCT_TRAITS_MEMBER(transition) |
256 IPC_STRUCT_TRAITS_MEMBER(redirects) | 257 IPC_STRUCT_TRAITS_MEMBER(redirects) |
257 IPC_STRUCT_TRAITS_MEMBER(should_update_history) | 258 IPC_STRUCT_TRAITS_MEMBER(should_update_history) |
258 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 259 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
259 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 260 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
260 IPC_STRUCT_TRAITS_MEMBER(password_form) | 261 IPC_STRUCT_TRAITS_MEMBER(password_form) |
261 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) | 262 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) |
262 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 263 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
263 IPC_STRUCT_TRAITS_END() | 264 IPC_STRUCT_TRAITS_END() |
(...skipping 1645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1909 media::MediaLogEvent /* event */) | 1910 media::MediaLogEvent /* event */) |
1910 | 1911 |
1911 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1912 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1912 // being sent back. | 1913 // being sent back. |
1913 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1914 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1914 | 1915 |
1915 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1916 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1916 // whenever the mouse is unlocked (which may or may not be caused by | 1917 // whenever the mouse is unlocked (which may or may not be caused by |
1917 // ViewHostMsg_UnlockMouse). | 1918 // ViewHostMsg_UnlockMouse). |
1918 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1919 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |