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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 IPC_STRUCT_TRAITS_MEMBER(redirects) | 239 IPC_STRUCT_TRAITS_MEMBER(redirects) |
240 IPC_STRUCT_TRAITS_MEMBER(should_update_history) | 240 IPC_STRUCT_TRAITS_MEMBER(should_update_history) |
241 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 241 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
242 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 242 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
243 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) | 243 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) |
244 IPC_STRUCT_TRAITS_MEMBER(socket_address) | 244 IPC_STRUCT_TRAITS_MEMBER(socket_address) |
245 IPC_STRUCT_TRAITS_END() | 245 IPC_STRUCT_TRAITS_END() |
246 | 246 |
247 IPC_STRUCT_TRAITS_BEGIN(content::PepperRendererInstanceData) | 247 IPC_STRUCT_TRAITS_BEGIN(content::PepperRendererInstanceData) |
248 IPC_STRUCT_TRAITS_MEMBER(render_process_id) | 248 IPC_STRUCT_TRAITS_MEMBER(render_process_id) |
249 IPC_STRUCT_TRAITS_MEMBER(render_view_id) | 249 IPC_STRUCT_TRAITS_MEMBER(render_frame_id) |
250 IPC_STRUCT_TRAITS_MEMBER(document_url) | 250 IPC_STRUCT_TRAITS_MEMBER(document_url) |
251 IPC_STRUCT_TRAITS_MEMBER(plugin_url) | 251 IPC_STRUCT_TRAITS_MEMBER(plugin_url) |
252 IPC_STRUCT_TRAITS_END() | 252 IPC_STRUCT_TRAITS_END() |
253 | 253 |
254 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) | 254 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) |
255 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) | 255 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) |
256 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) | 256 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) |
257 IPC_STRUCT_TRAITS_MEMBER(hinting) | 257 IPC_STRUCT_TRAITS_MEMBER(hinting) |
258 IPC_STRUCT_TRAITS_MEMBER(use_autohinter) | 258 IPC_STRUCT_TRAITS_MEMBER(use_autohinter) |
259 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps) | 259 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps) |
(...skipping 2087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2347 // synchronously (see crbug.com/120597). This IPC message sends the character | 2347 // synchronously (see crbug.com/120597). This IPC message sends the character |
2348 // bounds after every composition change to always have correct bound info. | 2348 // bounds after every composition change to always have correct bound info. |
2349 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, | 2349 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, |
2350 gfx::Range /* composition range */, | 2350 gfx::Range /* composition range */, |
2351 std::vector<gfx::Rect> /* character bounds */) | 2351 std::vector<gfx::Rect> /* character bounds */) |
2352 #endif | 2352 #endif |
2353 | 2353 |
2354 // Adding a new message? Stick to the sort order above: first platform | 2354 // Adding a new message? Stick to the sort order above: first platform |
2355 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2355 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
2356 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2356 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |