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