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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 IPC_STRUCT_MEMBER(gfx::Size, max_size) | 546 IPC_STRUCT_MEMBER(gfx::Size, max_size) |
547 IPC_STRUCT_END() | 547 IPC_STRUCT_END() |
548 | 548 |
549 #if defined(OS_MACOSX) | 549 #if defined(OS_MACOSX) |
550 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) | 550 IPC_STRUCT_BEGIN(ViewMsg_UpdateScrollbarTheme_Params) |
551 IPC_STRUCT_MEMBER(float, initial_button_delay) | 551 IPC_STRUCT_MEMBER(float, initial_button_delay) |
552 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) | 552 IPC_STRUCT_MEMBER(float, autoscroll_button_delay) |
553 IPC_STRUCT_MEMBER(bool, jump_on_track_click) | 553 IPC_STRUCT_MEMBER(bool, jump_on_track_click) |
554 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) | 554 IPC_STRUCT_MEMBER(blink::ScrollerStyle, preferred_scroller_style) |
555 IPC_STRUCT_MEMBER(bool, redraw) | 555 IPC_STRUCT_MEMBER(bool, redraw) |
556 IPC_STRUCT_MEMBER(bool, scroll_animation_enabled) | |
557 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) | 556 IPC_STRUCT_MEMBER(blink::WebScrollbarButtonsPlacement, button_placement) |
558 IPC_STRUCT_END() | 557 IPC_STRUCT_END() |
559 #endif | 558 #endif |
560 | 559 |
561 // Messages sent from the browser to the renderer. | 560 // Messages sent from the browser to the renderer. |
562 | 561 |
563 #if defined(OS_ANDROID) | 562 #if defined(OS_ANDROID) |
564 // Tells the renderer to cancel an opened date/time dialog. | 563 // Tells the renderer to cancel an opened date/time dialog. |
565 IPC_MESSAGE_ROUTED0(ViewMsg_CancelDateTimeDialog) | 564 IPC_MESSAGE_ROUTED0(ViewMsg_CancelDateTimeDialog) |
566 | 565 |
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1335 // Instructs the browser to start plugin IME. | 1334 // Instructs the browser to start plugin IME. |
1336 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1335 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
1337 | 1336 |
1338 // Receives content of a web page as plain text. | 1337 // Receives content of a web page as plain text. |
1339 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1338 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1340 #endif | 1339 #endif |
1341 | 1340 |
1342 // Adding a new message? Stick to the sort order above: first platform | 1341 // Adding a new message? Stick to the sort order above: first platform |
1343 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1342 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1344 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1343 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |