| 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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 IPC_MESSAGE_ROUTED1(ViewMsg_DisableAutoResize, | 508 IPC_MESSAGE_ROUTED1(ViewMsg_DisableAutoResize, |
| 509 gfx::Size /* new_size */) | 509 gfx::Size /* new_size */) |
| 510 | 510 |
| 511 // Changes the text direction of the currently selected input field (if any). | 511 // Changes the text direction of the currently selected input field (if any). |
| 512 IPC_MESSAGE_ROUTED1(ViewMsg_SetTextDirection, | 512 IPC_MESSAGE_ROUTED1(ViewMsg_SetTextDirection, |
| 513 blink::WebTextDirection /* direction */) | 513 blink::WebTextDirection /* direction */) |
| 514 | 514 |
| 515 // Make the RenderView background transparent or opaque. | 515 // Make the RenderView background transparent or opaque. |
| 516 IPC_MESSAGE_ROUTED1(ViewMsg_SetBackgroundOpaque, bool /* opaque */) | 516 IPC_MESSAGE_ROUTED1(ViewMsg_SetBackgroundOpaque, bool /* opaque */) |
| 517 | 517 |
| 518 // Set the RenderView background color. |
| 519 IPC_MESSAGE_ROUTED1(ViewMsg_SetBaseBackgroundColor, SkColor /* color */) |
| 520 |
| 518 // Used to tell the renderer not to add scrollbars with height and | 521 // Used to tell the renderer not to add scrollbars with height and |
| 519 // width below a threshold. | 522 // width below a threshold. |
| 520 IPC_MESSAGE_ROUTED1(ViewMsg_DisableScrollbarsForSmallWindows, | 523 IPC_MESSAGE_ROUTED1(ViewMsg_DisableScrollbarsForSmallWindows, |
| 521 gfx::Size /* disable_scrollbar_size_limit */) | 524 gfx::Size /* disable_scrollbar_size_limit */) |
| 522 | 525 |
| 523 // Activate/deactivate the RenderView (i.e., set its controls' tint | 526 // Activate/deactivate the RenderView (i.e., set its controls' tint |
| 524 // accordingly, etc.). | 527 // accordingly, etc.). |
| 525 IPC_MESSAGE_ROUTED1(ViewMsg_SetActive, | 528 IPC_MESSAGE_ROUTED1(ViewMsg_SetActive, |
| 526 bool /* active */) | 529 bool /* active */) |
| 527 | 530 |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 int /* y */) | 887 int /* y */) |
| 885 | 888 |
| 886 #elif defined(OS_MACOSX) | 889 #elif defined(OS_MACOSX) |
| 887 // Receives content of a web page as plain text. | 890 // Receives content of a web page as plain text. |
| 888 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 891 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 889 #endif | 892 #endif |
| 890 | 893 |
| 891 // Adding a new message? Stick to the sort order above: first platform | 894 // Adding a new message? Stick to the sort order above: first platform |
| 892 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 895 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 893 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 896 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |