| OLD | NEW |
| 1 // Copyright (c) 2011 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 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 // Notifies the browser process that a database might have been modified | 71 // Notifies the browser process that a database might have been modified |
| 72 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Modified, | 72 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Modified, |
| 73 string16 /* origin identifier */, | 73 string16 /* origin identifier */, |
| 74 string16 /* database name */) | 74 string16 /* database name */) |
| 75 | 75 |
| 76 // Notifies the browser process that a database is about to close | 76 // Notifies the browser process that a database is about to close |
| 77 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Closed, | 77 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Closed, |
| 78 string16 /* origin identifier */, | 78 string16 /* origin identifier */, |
| 79 string16 /* database name */) | 79 string16 /* database name */) |
| 80 | 80 |
| 81 // Sent when a sqlite error indicates the database is corrupt. |
| 82 IPC_MESSAGE_CONTROL3(DatabaseHostMsg_HandleSqliteError, |
| 83 string16 /* origin identifier */, |
| 84 string16 /* database name */, |
| 85 int /* error */) |
| OLD | NEW |