| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 IPC_STRUCT_TRAITS_MEMBER(verticalDPI) | 122 IPC_STRUCT_TRAITS_MEMBER(verticalDPI) |
| 123 IPC_STRUCT_TRAITS_MEMBER(horizontalDPI) | 123 IPC_STRUCT_TRAITS_MEMBER(horizontalDPI) |
| 124 IPC_STRUCT_TRAITS_MEMBER(depth) | 124 IPC_STRUCT_TRAITS_MEMBER(depth) |
| 125 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) | 125 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) |
| 126 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) | 126 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) |
| 127 IPC_STRUCT_TRAITS_MEMBER(rect) | 127 IPC_STRUCT_TRAITS_MEMBER(rect) |
| 128 IPC_STRUCT_TRAITS_MEMBER(availableRect) | 128 IPC_STRUCT_TRAITS_MEMBER(availableRect) |
| 129 IPC_STRUCT_TRAITS_END() | 129 IPC_STRUCT_TRAITS_END() |
| 130 | 130 |
| 131 IPC_STRUCT_TRAITS_BEGIN(WebPreferences) | 131 IPC_STRUCT_TRAITS_BEGIN(WebPreferences) |
| 132 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) | |
| 133 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) | |
| 134 IPC_STRUCT_TRAITS_MEMBER(serif_font_family) | |
| 135 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family) | |
| 136 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family) | |
| 137 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family) | |
| 138 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) | 132 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) |
| 139 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) | 133 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) |
| 140 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) | 134 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) |
| 141 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) | 135 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) |
| 142 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) | 136 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) |
| 143 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) | 137 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) |
| 144 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 138 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
| 145 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 139 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
| 146 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) | 140 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) |
| 147 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 141 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
| (...skipping 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2008 int /* automation_id */) | 2002 int /* automation_id */) |
| 2009 | 2003 |
| 2010 // Sent to the browser when the renderer detects it is blocked on a pepper | 2004 // Sent to the browser when the renderer detects it is blocked on a pepper |
| 2011 // plugin message for too long. This is also sent when it becomes unhung | 2005 // plugin message for too long. This is also sent when it becomes unhung |
| 2012 // (according to the value of is_hung). The browser can give the user the | 2006 // (according to the value of is_hung). The browser can give the user the |
| 2013 // option of killing the plugin. | 2007 // option of killing the plugin. |
| 2014 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2008 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2015 int /* plugin_child_id */, | 2009 int /* plugin_child_id */, |
| 2016 FilePath /* path */, | 2010 FilePath /* path */, |
| 2017 bool /* is_hung */) | 2011 bool /* is_hung */) |
| OLD | NEW |