diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-02 18:24:55 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-02 18:24:55 +0000 |
commit | 9fb83e856fc12168151094df31e57177e4844417 (patch) | |
tree | 57e9721150e4f940a3bb1e6444e8423108005805 /chrome/common | |
parent | 00b5930321cc07dd3ccf726a15f1e25fd78e2577 (diff) | |
download | chromium_src-9fb83e856fc12168151094df31e57177e4844417.zip chromium_src-9fb83e856fc12168151094df31e57177e4844417.tar.gz chromium_src-9fb83e856fc12168151094df31e57177e4844417.tar.bz2 |
Store blocked and accessed cookies in the tab contents.
This will enable chrome to display all cookies used/blocked on the current site to the user instead of just the information that something was blocked. The cookies are collected in data structures suitable for displaying them using the cookies tree model.
BUG=45230
TEST=none
Review URL: http://codereview.chromium.org/2370001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/render_messages_internal.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index 0ba750a..421e4fb 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -1271,6 +1271,15 @@ IPC_BEGIN_MESSAGES(ViewHost) IPC_MESSAGE_ROUTED1(ViewHostMsg_ContentBlocked, ContentSettingsType /* type of blocked content */) + // Tells the browser that a specific Web database in the current page was + // accessed. + IPC_MESSAGE_ROUTED5(ViewHostMsg_WebDatabaseAccessed, + GURL /* origin url */, + string16 /* database name */, + string16 /* database display name */, + unsigned long /* estimated size */, + bool /* blocked by policy */) + // Initiates a download based on user actions like 'ALT+click'. IPC_MESSAGE_ROUTED2(ViewHostMsg_DownloadUrl, GURL /* url */, |