| 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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 IPC_MESSAGE_ROUTED0(ViewMsg_UpdateTargetURL_ACK) | 728 IPC_MESSAGE_ROUTED0(ViewMsg_UpdateTargetURL_ACK) |
| 729 | 729 |
| 730 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, | 730 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, |
| 731 std::vector<content::FileChooserFileInfo>) | 731 std::vector<content::FileChooserFileInfo>) |
| 732 | 732 |
| 733 // Provides the results of directory enumeration. | 733 // Provides the results of directory enumeration. |
| 734 IPC_MESSAGE_ROUTED2(ViewMsg_EnumerateDirectoryResponse, | 734 IPC_MESSAGE_ROUTED2(ViewMsg_EnumerateDirectoryResponse, |
| 735 int /* request_id */, | 735 int /* request_id */, |
| 736 std::vector<base::FilePath> /* files_in_directory */) | 736 std::vector<base::FilePath> /* files_in_directory */) |
| 737 | 737 |
| 738 // Tells the renderer to suppress any further modal dialogs until it receives a | |
| 739 // corresponding ViewMsg_SwapOut message. This ensures that no | |
| 740 // PageGroupLoadDeferrer is on the stack for SwapOut. | |
| 741 IPC_MESSAGE_ROUTED0(ViewMsg_SuppressDialogsUntilSwapOut) | |
| 742 | |
| 743 // Instructs the renderer to close the current page, including running the | 738 // Instructs the renderer to close the current page, including running the |
| 744 // onunload event handler. | 739 // onunload event handler. |
| 745 // | 740 // |
| 746 // Expects a ClosePage_ACK message when finished. | 741 // Expects a ClosePage_ACK message when finished. |
| 747 IPC_MESSAGE_ROUTED0(ViewMsg_ClosePage) | 742 IPC_MESSAGE_ROUTED0(ViewMsg_ClosePage) |
| 748 | 743 |
| 749 // Notifies the renderer about ui theme changes | 744 // Notifies the renderer about ui theme changes |
| 750 IPC_MESSAGE_ROUTED0(ViewMsg_ThemeChanged) | 745 IPC_MESSAGE_ROUTED0(ViewMsg_ThemeChanged) |
| 751 | 746 |
| 752 // Notifies the renderer that a paint is to be generated for the rectangle | 747 // Notifies the renderer that a paint is to be generated for the rectangle |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1311 // Instructs the browser to start plugin IME. | 1306 // Instructs the browser to start plugin IME. |
| 1312 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1307 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
| 1313 | 1308 |
| 1314 // Receives content of a web page as plain text. | 1309 // Receives content of a web page as plain text. |
| 1315 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1310 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1316 #endif | 1311 #endif |
| 1317 | 1312 |
| 1318 // Adding a new message? Stick to the sort order above: first platform | 1313 // Adding a new message? Stick to the sort order above: first platform |
| 1319 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1314 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1320 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1315 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |