| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 IPC_STRUCT_MEMBER(bool, enable_auto_resize) | 482 IPC_STRUCT_MEMBER(bool, enable_auto_resize) |
| 483 | 483 |
| 484 // The minimum size to layout the page if auto-resize is enabled. | 484 // The minimum size to layout the page if auto-resize is enabled. |
| 485 IPC_STRUCT_MEMBER(gfx::Size, min_size) | 485 IPC_STRUCT_MEMBER(gfx::Size, min_size) |
| 486 | 486 |
| 487 // The maximum size to layout the page if auto-resize is enabled. | 487 // The maximum size to layout the page if auto-resize is enabled. |
| 488 IPC_STRUCT_MEMBER(gfx::Size, max_size) | 488 IPC_STRUCT_MEMBER(gfx::Size, max_size) |
| 489 | 489 |
| 490 // The page zoom level. | 490 // The page zoom level. |
| 491 IPC_STRUCT_MEMBER(double, page_zoom_level) | 491 IPC_STRUCT_MEMBER(double, page_zoom_level) |
| 492 |
| 493 // The color profile to use for image decode. |
| 494 IPC_STRUCT_MEMBER(std::vector<char>, image_decode_color_profile) |
| 492 IPC_STRUCT_END() | 495 IPC_STRUCT_END() |
| 493 | 496 |
| 494 #if defined(OS_MACOSX) | 497 #if defined(OS_MACOSX) |
| 495 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) | 498 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) |
| 496 IPC_STRUCT_MEMBER(float, initial_button_delay) | 499 IPC_STRUCT_MEMBER(float, initial_button_delay) |
| 497 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) | 500 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) |
| 498 IPC_STRUCT_MEMBER(bool, jump_on_track_click) | 501 IPC_STRUCT_MEMBER(bool, jump_on_track_click) |
| 499 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) | 502 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) |
| 500 IPC_STRUCT_MEMBER(bool, redraw) | 503 IPC_STRUCT_MEMBER(bool, redraw) |
| 501 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) | 504 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1184 int /* y */) | 1187 int /* y */) |
| 1185 | 1188 |
| 1186 #elif defined(OS_MACOSX) | 1189 #elif defined(OS_MACOSX) |
| 1187 // Receives content of a web page as plain text. | 1190 // Receives content of a web page as plain text. |
| 1188 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1191 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1189 #endif | 1192 #endif |
| 1190 | 1193 |
| 1191 // Adding a new message? Stick to the sort order above: first platform | 1194 // Adding a new message? Stick to the sort order above: first platform |
| 1192 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1195 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1193 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1196 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |