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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) | 274 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) |
275 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) | 275 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) |
276 IPC_STRUCT_TRAITS_MEMBER(status_font_height) | 276 IPC_STRUCT_TRAITS_MEMBER(status_font_height) |
277 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name) | 277 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name) |
278 IPC_STRUCT_TRAITS_MEMBER(message_font_height) | 278 IPC_STRUCT_TRAITS_MEMBER(message_font_height) |
279 IPC_STRUCT_TRAITS_MEMBER(vertical_scroll_bar_width_in_dips) | 279 IPC_STRUCT_TRAITS_MEMBER(vertical_scroll_bar_width_in_dips) |
280 IPC_STRUCT_TRAITS_MEMBER(horizontal_scroll_bar_height_in_dips) | 280 IPC_STRUCT_TRAITS_MEMBER(horizontal_scroll_bar_height_in_dips) |
281 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_height_vertical_scroll_bar_in_dips) | 281 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_height_vertical_scroll_bar_in_dips) |
282 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_width_horizontal_scroll_bar_in_dips) | 282 IPC_STRUCT_TRAITS_MEMBER(arrow_bitmap_width_horizontal_scroll_bar_in_dips) |
283 #endif | 283 #endif |
284 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | |
285 IPC_STRUCT_TRAITS_END() | 284 IPC_STRUCT_TRAITS_END() |
286 | 285 |
287 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginGeometry) | 286 IPC_STRUCT_TRAITS_BEGIN(content::WebPluginGeometry) |
288 IPC_STRUCT_TRAITS_MEMBER(window) | 287 IPC_STRUCT_TRAITS_MEMBER(window) |
289 IPC_STRUCT_TRAITS_MEMBER(window_rect) | 288 IPC_STRUCT_TRAITS_MEMBER(window_rect) |
290 IPC_STRUCT_TRAITS_MEMBER(clip_rect) | 289 IPC_STRUCT_TRAITS_MEMBER(clip_rect) |
291 IPC_STRUCT_TRAITS_MEMBER(cutout_rects) | 290 IPC_STRUCT_TRAITS_MEMBER(cutout_rects) |
292 IPC_STRUCT_TRAITS_MEMBER(rects_valid) | 291 IPC_STRUCT_TRAITS_MEMBER(rects_valid) |
293 IPC_STRUCT_TRAITS_MEMBER(visible) | 292 IPC_STRUCT_TRAITS_MEMBER(visible) |
294 IPC_STRUCT_TRAITS_END() | 293 IPC_STRUCT_TRAITS_END() |
(...skipping 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1612 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1611 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
1613 // for details. | 1612 // for details. |
1614 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1613 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
1615 LOGFONT /* font_data */, | 1614 LOGFONT /* font_data */, |
1616 base::string16 /* characters */) | 1615 base::string16 /* characters */) |
1617 #endif | 1616 #endif |
1618 | 1617 |
1619 // Adding a new message? Stick to the sort order above: first platform | 1618 // Adding a new message? Stick to the sort order above: first platform |
1620 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1619 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1621 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1620 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |