| 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 "base/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
| 9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 877 // process to release the magnified image. | 877 // process to release the magnified image. |
| 878 IPC_MESSAGE_ROUTED1(ViewMsg_ReleaseDisambiguationPopupBitmap, | 878 IPC_MESSAGE_ROUTED1(ViewMsg_ReleaseDisambiguationPopupBitmap, |
| 879 cc::SharedBitmapId /* id */) | 879 cc::SharedBitmapId /* id */) |
| 880 | 880 |
| 881 // Notifies the renderer that a snapshot has been retrieved. | 881 // Notifies the renderer that a snapshot has been retrieved. |
| 882 IPC_MESSAGE_ROUTED3(ViewMsg_WindowSnapshotCompleted, | 882 IPC_MESSAGE_ROUTED3(ViewMsg_WindowSnapshotCompleted, |
| 883 int /* snapshot_id */, | 883 int /* snapshot_id */, |
| 884 gfx::Size /* size */, | 884 gfx::Size /* size */, |
| 885 std::vector<unsigned char> /* png */) | 885 std::vector<unsigned char> /* png */) |
| 886 | 886 |
| 887 // Notifies render view to retrieve rendered text from WebView. |
| 887 IPC_MESSAGE_ROUTED0(ViewMsg_GetRenderedText) | 888 IPC_MESSAGE_ROUTED0(ViewMsg_GetRenderedText) |
| 888 | 889 |
| 889 #if defined(OS_MACOSX) | 890 #if defined(OS_MACOSX) |
| 890 IPC_ENUM_TRAITS_MAX_VALUE(blink::ScrollerStyle, blink::ScrollerStyleOverlay) | 891 IPC_ENUM_TRAITS_MAX_VALUE(blink::ScrollerStyle, blink::ScrollerStyleOverlay) |
| 891 | 892 |
| 892 // Notification of a change in scrollbar appearance and/or behavior. | 893 // Notification of a change in scrollbar appearance and/or behavior. |
| 893 IPC_MESSAGE_CONTROL5(ViewMsg_UpdateScrollbarTheme, | 894 IPC_MESSAGE_CONTROL5(ViewMsg_UpdateScrollbarTheme, |
| 894 float /* initial_button_delay */, | 895 float /* initial_button_delay */, |
| 895 float /* autoscroll_button_delay */, | 896 float /* autoscroll_button_delay */, |
| 896 bool /* jump_on_track_click */, | 897 bool /* jump_on_track_click */, |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1702 // Since the browser keeps handles to the allocated transport DIBs, this | 1703 // Since the browser keeps handles to the allocated transport DIBs, this |
| 1703 // message is sent to tell the browser that it may release them when the | 1704 // message is sent to tell the browser that it may release them when the |
| 1704 // renderer is finished with them. | 1705 // renderer is finished with them. |
| 1705 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1706 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
| 1706 TransportDIB::Id /* DIB id */) | 1707 TransportDIB::Id /* DIB id */) |
| 1707 #endif | 1708 #endif |
| 1708 | 1709 |
| 1709 // Adding a new message? Stick to the sort order above: first platform | 1710 // Adding a new message? Stick to the sort order above: first platform |
| 1710 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1711 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1711 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1712 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |