| 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 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 IPC_MESSAGE_ROUTED0(ViewMsg_UpdateTargetURL_ACK) | 727 IPC_MESSAGE_ROUTED0(ViewMsg_UpdateTargetURL_ACK) |
| 728 | 728 |
| 729 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, | 729 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, |
| 730 std::vector<content::FileChooserFileInfo>) | 730 std::vector<content::FileChooserFileInfo>) |
| 731 | 731 |
| 732 // Provides the results of directory enumeration. | 732 // Provides the results of directory enumeration. |
| 733 IPC_MESSAGE_ROUTED2(ViewMsg_EnumerateDirectoryResponse, | 733 IPC_MESSAGE_ROUTED2(ViewMsg_EnumerateDirectoryResponse, |
| 734 int /* request_id */, | 734 int /* request_id */, |
| 735 std::vector<base::FilePath> /* files_in_directory */) | 735 std::vector<base::FilePath> /* files_in_directory */) |
| 736 | 736 |
| 737 // Tells the renderer to suppress any further modal dialogs until it receives a | |
| 738 // corresponding ViewMsg_SwapOut message. This ensures that no | |
| 739 // PageGroupLoadDeferrer is on the stack for SwapOut. | |
| 740 IPC_MESSAGE_ROUTED0(ViewMsg_SuppressDialogsUntilSwapOut) | |
| 741 | |
| 742 // Instructs the renderer to close the current page, including running the | 737 // Instructs the renderer to close the current page, including running the |
| 743 // onunload event handler. | 738 // onunload event handler. |
| 744 // | 739 // |
| 745 // Expects a ClosePage_ACK message when finished. | 740 // Expects a ClosePage_ACK message when finished. |
| 746 IPC_MESSAGE_ROUTED0(ViewMsg_ClosePage) | 741 IPC_MESSAGE_ROUTED0(ViewMsg_ClosePage) |
| 747 | 742 |
| 748 // Notifies the renderer about ui theme changes | 743 // Notifies the renderer about ui theme changes |
| 749 IPC_MESSAGE_ROUTED0(ViewMsg_ThemeChanged) | 744 IPC_MESSAGE_ROUTED0(ViewMsg_ThemeChanged) |
| 750 | 745 |
| 751 // Notifies the renderer that a paint is to be generated for the rectangle | 746 // Notifies the renderer that a paint is to be generated for the rectangle |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1287 int /* y */) | 1282 int /* y */) |
| 1288 | 1283 |
| 1289 #elif defined(OS_MACOSX) | 1284 #elif defined(OS_MACOSX) |
| 1290 // Receives content of a web page as plain text. | 1285 // Receives content of a web page as plain text. |
| 1291 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1286 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1292 #endif | 1287 #endif |
| 1293 | 1288 |
| 1294 // Adding a new message? Stick to the sort order above: first platform | 1289 // Adding a new message? Stick to the sort order above: first platform |
| 1295 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1290 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1296 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1291 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |