| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Multiply-included message file, no include guard. | 5 // Multiply-included message file, no include guard. |
| 6 | 6 |
| 7 #include "ipc/ipc_message_macros.h" | 7 #include "ipc/ipc_message_macros.h" |
| 8 #include "ipc/ipc_param_traits.h" | 8 #include "ipc/ipc_param_traits.h" |
| 9 #include "ipc/ipc_platform_file.h" | 9 #include "ipc/ipc_platform_file.h" |
| 10 | 10 |
| 11 #define IPC_MESSAGE_START DatabaseMsgStart | 11 #define IPC_MESSAGE_START DatabaseMsgStart |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 // Notifies the browser process that a database might have been modified | 67 // Notifies the browser process that a database might have been modified |
| 68 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Modified, | 68 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Modified, |
| 69 string16 /* origin identifier */, | 69 string16 /* origin identifier */, |
| 70 string16 /* database name */) | 70 string16 /* database name */) |
| 71 | 71 |
| 72 // Notifies the browser process that a database is about to close | 72 // Notifies the browser process that a database is about to close |
| 73 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Closed, | 73 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Closed, |
| 74 string16 /* origin identifier */, | 74 string16 /* origin identifier */, |
| 75 string16 /* database name */) | 75 string16 /* database name */) |
| 76 | 76 |
| OLD | NEW |