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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebPreferences) | 130 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebPreferences) |
131 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) | 131 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) |
132 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) | 132 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) |
133 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) | 133 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) |
134 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) | 134 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) |
135 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) | 135 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) |
136 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) | 136 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) |
137 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 137 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
138 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 138 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
139 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) | 139 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) |
| 140 IPC_STRUCT_TRAITS_MEMBER(apply_default_device_scale_factor_in_compositor) |
140 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 141 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
141 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) | 142 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) |
142 IPC_STRUCT_TRAITS_MEMBER(default_encoding) | 143 IPC_STRUCT_TRAITS_MEMBER(default_encoding) |
143 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 144 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
144 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 145 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
145 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 146 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
146 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 147 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
147 IPC_STRUCT_TRAITS_MEMBER(images_enabled) | 148 IPC_STRUCT_TRAITS_MEMBER(images_enabled) |
148 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 149 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
149 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) | 150 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) |
(...skipping 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2054 // (according to the value of is_hung). The browser can give the user the | 2055 // (according to the value of is_hung). The browser can give the user the |
2055 // option of killing the plugin. | 2056 // option of killing the plugin. |
2056 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2057 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2057 int /* plugin_child_id */, | 2058 int /* plugin_child_id */, |
2058 FilePath /* path */, | 2059 FilePath /* path */, |
2059 bool /* is_hung */) | 2060 bool /* is_hung */) |
2060 | 2061 |
2061 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2062 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2062 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2063 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2063 int /* orientation */) | 2064 int /* orientation */) |
OLD | NEW |