| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 211 |
| 212 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserParams) | 212 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserParams) |
| 213 IPC_STRUCT_TRAITS_MEMBER(mode) | 213 IPC_STRUCT_TRAITS_MEMBER(mode) |
| 214 IPC_STRUCT_TRAITS_MEMBER(title) | 214 IPC_STRUCT_TRAITS_MEMBER(title) |
| 215 IPC_STRUCT_TRAITS_MEMBER(default_file_name) | 215 IPC_STRUCT_TRAITS_MEMBER(default_file_name) |
| 216 IPC_STRUCT_TRAITS_MEMBER(accept_types) | 216 IPC_STRUCT_TRAITS_MEMBER(accept_types) |
| 217 IPC_STRUCT_TRAITS_MEMBER(need_local_path) | 217 IPC_STRUCT_TRAITS_MEMBER(need_local_path) |
| 218 #if defined(OS_ANDROID) | 218 #if defined(OS_ANDROID) |
| 219 IPC_STRUCT_TRAITS_MEMBER(capture) | 219 IPC_STRUCT_TRAITS_MEMBER(capture) |
| 220 #endif | 220 #endif |
| 221 IPC_STRUCT_TRAITS_MEMBER(requestor) |
| 221 IPC_STRUCT_TRAITS_END() | 222 IPC_STRUCT_TRAITS_END() |
| 222 | 223 |
| 223 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) | 224 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) |
| 224 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) | 225 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) |
| 225 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) | 226 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) |
| 226 IPC_STRUCT_TRAITS_MEMBER(hinting) | 227 IPC_STRUCT_TRAITS_MEMBER(hinting) |
| 227 IPC_STRUCT_TRAITS_MEMBER(use_autohinter) | 228 IPC_STRUCT_TRAITS_MEMBER(use_autohinter) |
| 228 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps) | 229 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps) |
| 229 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) | 230 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) |
| 230 IPC_STRUCT_TRAITS_MEMBER(use_subpixel_positioning) | 231 IPC_STRUCT_TRAITS_MEMBER(use_subpixel_positioning) |
| (...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1397 // Instructs the browser to start plugin IME. | 1398 // Instructs the browser to start plugin IME. |
| 1398 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1399 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
| 1399 | 1400 |
| 1400 // Receives content of a web page as plain text. | 1401 // Receives content of a web page as plain text. |
| 1401 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string); | 1402 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string); |
| 1402 #endif | 1403 #endif |
| 1403 | 1404 |
| 1404 // Adding a new message? Stick to the sort order above: first platform | 1405 // Adding a new message? Stick to the sort order above: first platform |
| 1405 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1406 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1406 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1407 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |