| 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 IPC_STRUCT_MEMBER(content::ResizeParams, initial_size) | 542 IPC_STRUCT_MEMBER(content::ResizeParams, initial_size) |
| 543 | 543 |
| 544 // Whether to enable auto-resize. | 544 // Whether to enable auto-resize. |
| 545 IPC_STRUCT_MEMBER(bool, enable_auto_resize) | 545 IPC_STRUCT_MEMBER(bool, enable_auto_resize) |
| 546 | 546 |
| 547 // The minimum size to layout the page if auto-resize is enabled. | 547 // The minimum size to layout the page if auto-resize is enabled. |
| 548 IPC_STRUCT_MEMBER(gfx::Size, min_size) | 548 IPC_STRUCT_MEMBER(gfx::Size, min_size) |
| 549 | 549 |
| 550 // The maximum size to layout the page if auto-resize is enabled. | 550 // The maximum size to layout the page if auto-resize is enabled. |
| 551 IPC_STRUCT_MEMBER(gfx::Size, max_size) | 551 IPC_STRUCT_MEMBER(gfx::Size, max_size) |
| 552 |
| 553 // The color profile to use for image decode. |
| 554 IPC_STRUCT_MEMBER(std::vector<char>, image_decode_color_profile) |
| 552 IPC_STRUCT_END() | 555 IPC_STRUCT_END() |
| 553 | 556 |
| 554 #if defined(OS_MACOSX) | 557 #if defined(OS_MACOSX) |
| 555 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) | 558 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) |
| 556 IPC_STRUCT_MEMBER(float, initial_button_delay) | 559 IPC_STRUCT_MEMBER(float, initial_button_delay) |
| 557 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) | 560 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) |
| 558 IPC_STRUCT_MEMBER(bool, jump_on_track_click) | 561 IPC_STRUCT_MEMBER(bool, jump_on_track_click) |
| 559 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) | 562 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) |
| 560 IPC_STRUCT_MEMBER(bool, redraw) | 563 IPC_STRUCT_MEMBER(bool, redraw) |
| 561 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) | 564 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) |
| (...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1334 // Instructs the browser to start plugin IME. | 1337 // Instructs the browser to start plugin IME. |
| 1335 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1338 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
| 1336 | 1339 |
| 1337 // Receives content of a web page as plain text. | 1340 // Receives content of a web page as plain text. |
| 1338 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1341 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1339 #endif | 1342 #endif |
| 1340 | 1343 |
| 1341 // Adding a new message? Stick to the sort order above: first platform | 1344 // Adding a new message? Stick to the sort order above: first platform |
| 1342 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1345 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1343 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1346 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |