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