| 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/process.h" | 8 #include "base/process.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 IPC_STRUCT_TRAITS_MEMBER(verticalDPI) | 121 IPC_STRUCT_TRAITS_MEMBER(verticalDPI) |
| 122 IPC_STRUCT_TRAITS_MEMBER(horizontalDPI) | 122 IPC_STRUCT_TRAITS_MEMBER(horizontalDPI) |
| 123 IPC_STRUCT_TRAITS_MEMBER(depth) | 123 IPC_STRUCT_TRAITS_MEMBER(depth) |
| 124 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) | 124 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) |
| 125 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) | 125 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) |
| 126 IPC_STRUCT_TRAITS_MEMBER(rect) | 126 IPC_STRUCT_TRAITS_MEMBER(rect) |
| 127 IPC_STRUCT_TRAITS_MEMBER(availableRect) | 127 IPC_STRUCT_TRAITS_MEMBER(availableRect) |
| 128 IPC_STRUCT_TRAITS_END() | 128 IPC_STRUCT_TRAITS_END() |
| 129 | 129 |
| 130 IPC_STRUCT_TRAITS_BEGIN(WebPreferences) | 130 IPC_STRUCT_TRAITS_BEGIN(WebPreferences) |
| 131 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) | |
| 132 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) | |
| 133 IPC_STRUCT_TRAITS_MEMBER(serif_font_family) | |
| 134 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family) | |
| 135 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family) | |
| 136 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family) | |
| 137 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) | 131 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) |
| 138 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) | 132 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) |
| 139 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) | 133 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) |
| 140 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) | 134 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) |
| 141 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) | 135 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) |
| 142 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) | 136 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) |
| 143 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 137 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
| 144 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 138 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
| 145 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) | 139 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) |
| 146 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 140 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
| (...skipping 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2028 int /* automation_id */) | 2022 int /* automation_id */) |
| 2029 | 2023 |
| 2030 // Sent to the browser when the renderer detects it is blocked on a pepper | 2024 // Sent to the browser when the renderer detects it is blocked on a pepper |
| 2031 // plugin message for too long. This is also sent when it becomes unhung | 2025 // plugin message for too long. This is also sent when it becomes unhung |
| 2032 // (according to the value of is_hung). The browser can give the user the | 2026 // (according to the value of is_hung). The browser can give the user the |
| 2033 // option of killing the plugin. | 2027 // option of killing the plugin. |
| 2034 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2028 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2035 int /* plugin_child_id */, | 2029 int /* plugin_child_id */, |
| 2036 FilePath /* path */, | 2030 FilePath /* path */, |
| 2037 bool /* is_hung */) | 2031 bool /* is_hung */) |
| OLD | NEW |