| 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 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 // or not. | 838 // or not. |
| 839 IPC_MESSAGE_ROUTED1(ViewMsg_PpapiBrokerPermissionResult, | 839 IPC_MESSAGE_ROUTED1(ViewMsg_PpapiBrokerPermissionResult, |
| 840 bool /* result */) | 840 bool /* result */) |
| 841 | 841 |
| 842 // Tells the renderer to empty its plugin list cache, optional reloading | 842 // Tells the renderer to empty its plugin list cache, optional reloading |
| 843 // pages containing plugins. | 843 // pages containing plugins. |
| 844 IPC_MESSAGE_CONTROL1(ViewMsg_PurgePluginListCache, | 844 IPC_MESSAGE_CONTROL1(ViewMsg_PurgePluginListCache, |
| 845 bool /* reload_pages */) | 845 bool /* reload_pages */) |
| 846 #endif | 846 #endif |
| 847 | 847 |
| 848 // Used to instruct the RenderView to go into "view source" mode. | |
| 849 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) | |
| 850 | |
| 851 // An acknowledge to ViewHostMsg_MultipleTargetsTouched to notify the renderer | 848 // An acknowledge to ViewHostMsg_MultipleTargetsTouched to notify the renderer |
| 852 // process to release the magnified image. | 849 // process to release the magnified image. |
| 853 IPC_MESSAGE_ROUTED1(ViewMsg_ReleaseDisambiguationPopupBitmap, | 850 IPC_MESSAGE_ROUTED1(ViewMsg_ReleaseDisambiguationPopupBitmap, |
| 854 cc::SharedBitmapId /* id */) | 851 cc::SharedBitmapId /* id */) |
| 855 | 852 |
| 856 // Fetches complete rendered content of a web page as plain text. | 853 // Fetches complete rendered content of a web page as plain text. |
| 857 IPC_MESSAGE_ROUTED0(ViewMsg_GetRenderedText) | 854 IPC_MESSAGE_ROUTED0(ViewMsg_GetRenderedText) |
| 858 | 855 |
| 859 #if defined(OS_MACOSX) | 856 #if defined(OS_MACOSX) |
| 860 // Notification of a change in scrollbar appearance and/or behavior. | 857 // Notification of a change in scrollbar appearance and/or behavior. |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1313 // Instructs the browser to start plugin IME. | 1310 // Instructs the browser to start plugin IME. |
| 1314 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1311 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
| 1315 | 1312 |
| 1316 // Receives content of a web page as plain text. | 1313 // Receives content of a web page as plain text. |
| 1317 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1314 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1318 #endif | 1315 #endif |
| 1319 | 1316 |
| 1320 // Adding a new message? Stick to the sort order above: first platform | 1317 // Adding a new message? Stick to the sort order above: first platform |
| 1321 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1318 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1322 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1319 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |