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/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
9 #include "base/process.h" | 9 #include "base/process.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) | 221 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) |
222 IPC_STRUCT_TRAITS_MEMBER(page_id) | 222 IPC_STRUCT_TRAITS_MEMBER(page_id) |
223 IPC_STRUCT_TRAITS_MEMBER(url) | 223 IPC_STRUCT_TRAITS_MEMBER(url) |
224 IPC_STRUCT_TRAITS_MEMBER(base_url) | 224 IPC_STRUCT_TRAITS_MEMBER(base_url) |
225 IPC_STRUCT_TRAITS_MEMBER(referrer) | 225 IPC_STRUCT_TRAITS_MEMBER(referrer) |
226 IPC_STRUCT_TRAITS_MEMBER(transition) | 226 IPC_STRUCT_TRAITS_MEMBER(transition) |
227 IPC_STRUCT_TRAITS_MEMBER(redirects) | 227 IPC_STRUCT_TRAITS_MEMBER(redirects) |
228 IPC_STRUCT_TRAITS_MEMBER(should_update_history) | 228 IPC_STRUCT_TRAITS_MEMBER(should_update_history) |
229 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 229 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
230 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 230 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
231 IPC_STRUCT_TRAITS_MEMBER(password_form) | |
232 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) | 231 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) |
233 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 232 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
234 IPC_STRUCT_TRAITS_END() | 233 IPC_STRUCT_TRAITS_END() |
235 | 234 |
236 IPC_STRUCT_TRAITS_BEGIN(content::PepperRendererInstanceData) | 235 IPC_STRUCT_TRAITS_BEGIN(content::PepperRendererInstanceData) |
237 IPC_STRUCT_TRAITS_MEMBER(render_process_id) | 236 IPC_STRUCT_TRAITS_MEMBER(render_process_id) |
238 IPC_STRUCT_TRAITS_MEMBER(render_view_id) | 237 IPC_STRUCT_TRAITS_MEMBER(render_view_id) |
239 IPC_STRUCT_TRAITS_MEMBER(document_url) | 238 IPC_STRUCT_TRAITS_MEMBER(document_url) |
240 IPC_STRUCT_TRAITS_MEMBER(plugin_url) | 239 IPC_STRUCT_TRAITS_MEMBER(plugin_url) |
241 IPC_STRUCT_TRAITS_END() | 240 IPC_STRUCT_TRAITS_END() |
(...skipping 2123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2365 // synchronously (see crbug.com/120597). This IPC message sends the character | 2364 // synchronously (see crbug.com/120597). This IPC message sends the character |
2366 // bounds after every composition change to always have correct bound info. | 2365 // bounds after every composition change to always have correct bound info. |
2367 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, | 2366 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, |
2368 ui::Range /* composition range */, | 2367 ui::Range /* composition range */, |
2369 std::vector<gfx::Rect> /* character bounds */) | 2368 std::vector<gfx::Rect> /* character bounds */) |
2370 #endif | 2369 #endif |
2371 | 2370 |
2372 // Adding a new message? Stick to the sort order above: first platform | 2371 // Adding a new message? Stick to the sort order above: first platform |
2373 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2372 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
2374 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2373 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |