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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
761 int64 /* the size of the given DB file */) | 761 int64 /* the size of the given DB file */) |
762 | 762 |
763 // Notifies the child process of the new database size | 763 // Notifies the child process of the new database size |
764 IPC_MESSAGE_CONTROL4(ViewMsg_DatabaseUpdateSize, | 764 IPC_MESSAGE_CONTROL4(ViewMsg_DatabaseUpdateSize, |
765 string16 /* the origin */, | 765 string16 /* the origin */, |
766 string16 /* the database name */, | 766 string16 /* the database name */, |
767 int64 /* the new database size */, | 767 int64 /* the new database size */, |
768 int64 /* space available to origin */) | 768 int64 /* space available to origin */) |
769 | 769 |
770 // Storage events are broadcast to renderer processes. | 770 // Storage events are broadcast to renderer processes. |
771 IPC_MESSAGE_CONTROL5(ViewMsg_DOMStorageEvent, | 771 IPC_MESSAGE_CONTROL1(ViewMsg_DOMStorageEvent, |
772 string16 /* key */, | 772 ViewMsg_DOMStorageEvent_Params) |
773 NullableString16 /* old_value */, | |
774 NullableString16 /* new_value */, | |
775 string16 /* origin */, | |
776 DOMStorageType /* dom_storage_type */) | |
777 | 773 |
778 #if defined(IPC_MESSAGE_LOG_ENABLED) | 774 #if defined(IPC_MESSAGE_LOG_ENABLED) |
779 // Tell the renderer process to begin or end IPC message logging. | 775 // Tell the renderer process to begin or end IPC message logging. |
780 IPC_MESSAGE_CONTROL1(ViewMsg_SetIPCLoggingEnabled, | 776 IPC_MESSAGE_CONTROL1(ViewMsg_SetIPCLoggingEnabled, |
781 bool /* on or off */) | 777 bool /* on or off */) |
782 #endif | 778 #endif |
783 | 779 |
784 // Opens the given file for the sandboxed plugin, returning a handle | 780 // Opens the given file for the sandboxed plugin, returning a handle |
785 // duplicated into the destination process. On error, or if the file is not | 781 // duplicated into the destination process. On error, or if the file is not |
786 // permitted by the security policy, the response will contain a 0 handle. | 782 // permitted by the security policy, the response will contain a 0 handle. |
(...skipping 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1989 | 1985 |
1990 // Asks the browser process to generate a keypair for grabbing a client | 1986 // Asks the browser process to generate a keypair for grabbing a client |
1991 // certificate from a CA (<keygen> tag), and returns the signed public | 1987 // certificate from a CA (<keygen> tag), and returns the signed public |
1992 // key and challenge string. | 1988 // key and challenge string. |
1993 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, | 1989 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, |
1994 uint32 /* key size index */, | 1990 uint32 /* key size index */, |
1995 std::string /* challenge string */, | 1991 std::string /* challenge string */, |
1996 GURL /* URL of requestor */, | 1992 GURL /* URL of requestor */, |
1997 std::string /* signed public key and challenge */) | 1993 std::string /* signed public key and challenge */) |
1998 IPC_END_MESSAGES(ViewHost) | 1994 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |