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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) | 282 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) |
283 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) | 283 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) |
284 IPC_STRUCT_TRAITS_MEMBER(status_font_height) | 284 IPC_STRUCT_TRAITS_MEMBER(status_font_height) |
285 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name) | 285 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name) |
286 IPC_STRUCT_TRAITS_MEMBER(message_font_height) | 286 IPC_STRUCT_TRAITS_MEMBER(message_font_height) |
287 IPC_STRUCT_TRAITS_MEMBER(vertical_scroll_bar_width_in_dips) | 287 IPC_STRUCT_TRAITS_MEMBER(vertical_scroll_bar_width_in_dips) |
288 IPC_STRUCT_TRAITS_MEMBER(horizontal_scroll_bar_height_in_dips) | 288 IPC_STRUCT_TRAITS_MEMBER(horizontal_scroll_bar_height_in_dips) |
289 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_height_vertical_scroll_bar_in_dips) | 289 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_height_vertical_scroll_bar_in_dips) |
290 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_width_horizontal_scroll_bar_in_dips) | 290 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_width_horizontal_scroll_bar_in_dips) |
291 #endif | 291 #endif |
| 292 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
292 IPC_STRUCT_TRAITS_END() | 293 IPC_STRUCT_TRAITS_END() |
293 | 294 |
294 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginGeometry) | 295 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginGeometry) |
295 IPC_STRUCT_TRAITS_MEMBER(window) | 296 IPC_STRUCT_TRAITS_MEMBER(window) |
296 IPC_STRUCT_TRAITS_MEMBER(window_rect) | 297 IPC_STRUCT_TRAITS_MEMBER(window_rect) |
297 IPC_STRUCT_TRAITS_MEMBER(clip_rect) | 298 IPC_STRUCT_TRAITS_MEMBER(clip_rect) |
298 IPC_STRUCT_TRAITS_MEMBER(cutout_rects) | 299 IPC_STRUCT_TRAITS_MEMBER(cutout_rects) |
299 IPC_STRUCT_TRAITS_MEMBER(rects_valid) | 300 IPC_STRUCT_TRAITS_MEMBER(rects_valid) |
300 IPC_STRUCT_TRAITS_MEMBER(visible) | 301 IPC_STRUCT_TRAITS_MEMBER(visible) |
301 IPC_STRUCT_TRAITS_END() | 302 IPC_STRUCT_TRAITS_END() |
(...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1586 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1587 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
1587 // for details. | 1588 // for details. |
1588 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1589 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
1589 LOGFONT /* font_data */, | 1590 LOGFONT /* font_data */, |
1590 base::string16 /* characters */) | 1591 base::string16 /* characters */) |
1591 #endif | 1592 #endif |
1592 | 1593 |
1593 // Adding a new message? Stick to the sort order above: first platform | 1594 // Adding a new message? Stick to the sort order above: first platform |
1594 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1595 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1595 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1596 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |