Chromium Code Reviews| Index: chrome/common/render_messages_internal.h |
| diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h |
| index 94f2fcbaaafde786e8a2a551535c1bb309702945..6bdbd63a8b731e304da909d6cd3e231a66931bac 100644 |
| --- a/chrome/common/render_messages_internal.h |
| +++ b/chrome/common/render_messages_internal.h |
| @@ -2118,6 +2118,15 @@ IPC_BEGIN_MESSAGES(ViewHost) |
| // ViewMsg_CSSInsertRequest message and css has been inserted into the frame. |
| IPC_MESSAGE_ROUTED0(ViewHostMsg_OnCSSInserted) |
| + // Sent by the renderer process to check whether access to web databases is |
| + // granted by content settings. This may block and trigger a cookie prompt. |
| + IPC_SYNC_MESSAGE_ROUTED4_1(ViewHostMsg_AllowDatabase, |
| + std::string /* origin */, |
|
michaeln
2010/03/30 19:46:19
origin_url
|
| + string16 /* database name */, |
| + string16 /* database display name */, |
| + unsigned long /* estimated size */, |
| + bool /* result */) |
| + |
| // Asks the browser process to open a DB file with the given name |
| IPC_MESSAGE_CONTROL3(ViewHostMsg_DatabaseOpenFile, |
| string16 /* vfs file name */, |