OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 // Storage events are broadcast to renderer processes. | 776 // Storage events are broadcast to renderer processes. |
777 IPC_MESSAGE_CONTROL1(ViewMsg_DOMStorageEvent, | 777 IPC_MESSAGE_CONTROL1(ViewMsg_DOMStorageEvent, |
778 ViewMsg_DOMStorageEvent_Params) | 778 ViewMsg_DOMStorageEvent_Params) |
779 | 779 |
780 #if defined(IPC_MESSAGE_LOG_ENABLED) | 780 #if defined(IPC_MESSAGE_LOG_ENABLED) |
781 // Tell the renderer process to begin or end IPC message logging. | 781 // Tell the renderer process to begin or end IPC message logging. |
782 IPC_MESSAGE_CONTROL1(ViewMsg_SetIPCLoggingEnabled, | 782 IPC_MESSAGE_CONTROL1(ViewMsg_SetIPCLoggingEnabled, |
783 bool /* on or off */) | 783 bool /* on or off */) |
784 #endif | 784 #endif |
785 | 785 |
786 // Opens the given file for the sandboxed plugin, returning a handle | |
787 // duplicated into the destination process. On error, or if the file is not | |
788 // permitted by the security policy, the response will contain a 0 handle. | |
789 IPC_SYNC_MESSAGE_CONTROL1_1(ViewMsg_OpenFileForPlugin, | |
790 FilePath, /* file_name */ | |
791 ViewMsg_OpenFileForPluginResponse_Params) | |
792 | |
793 //--------------------------------------------------------------------------- | 786 //--------------------------------------------------------------------------- |
794 // Utility process messages: | 787 // Utility process messages: |
795 // These are messages from the browser to the utility process. They're here | 788 // These are messages from the browser to the utility process. They're here |
796 // because we ran out of spare message types. | 789 // because we ran out of spare message types. |
797 | 790 |
798 // Tell the utility process to unpack the given extension file in its | 791 // Tell the utility process to unpack the given extension file in its |
799 // directory and verify that it is valid. | 792 // directory and verify that it is valid. |
800 IPC_MESSAGE_CONTROL1(UtilityMsg_UnpackExtension, | 793 IPC_MESSAGE_CONTROL1(UtilityMsg_UnpackExtension, |
801 FilePath /* extension_filename */) | 794 FilePath /* extension_filename */) |
802 | 795 |
(...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2042 string16 /* word */, | 2035 string16 /* word */, |
2043 int /* document tag */, | 2036 int /* document tag */, |
2044 bool /* correct */) | 2037 bool /* correct */) |
2045 | 2038 |
2046 IPC_SYNC_MESSAGE_CONTROL1_1( | 2039 IPC_SYNC_MESSAGE_CONTROL1_1( |
2047 ViewHostMsg_SpellChecker_PlatformFillSuggestionList, | 2040 ViewHostMsg_SpellChecker_PlatformFillSuggestionList, |
2048 string16 /* word */, | 2041 string16 /* word */, |
2049 std::vector<string16> /* suggestions */) | 2042 std::vector<string16> /* suggestions */) |
2050 | 2043 |
2051 IPC_END_MESSAGES(ViewHost) | 2044 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |