| 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(webkit_glue::WebPreferences) | 130 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::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 1909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2056 // (according to the value of is_hung). The browser can give the user the | 2050 // (according to the value of is_hung). The browser can give the user the |
| 2057 // option of killing the plugin. | 2051 // option of killing the plugin. |
| 2058 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2052 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2059 int /* plugin_child_id */, | 2053 int /* plugin_child_id */, |
| 2060 FilePath /* path */, | 2054 FilePath /* path */, |
| 2061 bool /* is_hung */) | 2055 bool /* is_hung */) |
| 2062 | 2056 |
| 2063 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2057 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2064 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2058 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2065 int /* orientation */) | 2059 int /* orientation */) |
| OLD | NEW |