| 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 IPC_STRUCT_MEMBER(bool, enable_auto_resize) | 507 IPC_STRUCT_MEMBER(bool, enable_auto_resize) |
| 508 | 508 |
| 509 // The minimum size to layout the page if auto-resize is enabled. | 509 // The minimum size to layout the page if auto-resize is enabled. |
| 510 IPC_STRUCT_MEMBER(gfx::Size, min_size) | 510 IPC_STRUCT_MEMBER(gfx::Size, min_size) |
| 511 | 511 |
| 512 // The maximum size to layout the page if auto-resize is enabled. | 512 // The maximum size to layout the page if auto-resize is enabled. |
| 513 IPC_STRUCT_MEMBER(gfx::Size, max_size) | 513 IPC_STRUCT_MEMBER(gfx::Size, max_size) |
| 514 | 514 |
| 515 // The page zoom level. | 515 // The page zoom level. |
| 516 IPC_STRUCT_MEMBER(double, page_zoom_level) | 516 IPC_STRUCT_MEMBER(double, page_zoom_level) |
| 517 |
| 518 // The color profile to use for image decode. |
| 519 IPC_STRUCT_MEMBER(std::vector<char>, image_decode_color_profile) |
| 517 IPC_STRUCT_END() | 520 IPC_STRUCT_END() |
| 518 | 521 |
| 519 #if defined(OS_MACOSX) | 522 #if defined(OS_MACOSX) |
| 520 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) | 523 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) |
| 521 IPC_STRUCT_MEMBER(float, initial_button_delay) | 524 IPC_STRUCT_MEMBER(float, initial_button_delay) |
| 522 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) | 525 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) |
| 523 IPC_STRUCT_MEMBER(bool, jump_on_track_click) | 526 IPC_STRUCT_MEMBER(bool, jump_on_track_click) |
| 524 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) | 527 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) |
| 525 IPC_STRUCT_MEMBER(bool, redraw) | 528 IPC_STRUCT_MEMBER(bool, redraw) |
| 526 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) | 529 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) |
| (...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1247 int /* y */) | 1250 int /* y */) |
| 1248 | 1251 |
| 1249 #elif defined(OS_MACOSX) | 1252 #elif defined(OS_MACOSX) |
| 1250 // Receives content of a web page as plain text. | 1253 // Receives content of a web page as plain text. |
| 1251 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1254 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1252 #endif | 1255 #endif |
| 1253 | 1256 |
| 1254 // Adding a new message? Stick to the sort order above: first platform | 1257 // Adding a new message? Stick to the sort order above: first platform |
| 1255 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1258 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1256 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1259 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |