diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 05:44:40 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 05:44:40 +0000 |
commit | c61cc652f61fe89b5b1ccb7156896ba11cc0c7f1 (patch) | |
tree | 8f159443ffcb4cfad6ab1b64a6cdf70b297428c9 /chrome/common/render_messages_internal.h | |
parent | f244388daae810a179fe229a6da4a33344b68fa3 (diff) | |
download | chromium_src-c61cc652f61fe89b5b1ccb7156896ba11cc0c7f1.zip chromium_src-c61cc652f61fe89b5b1ccb7156896ba11cc0c7f1.tar.gz chromium_src-c61cc652f61fe89b5b1ccb7156896ba11cc0c7f1.tar.bz2 |
First half of http://codereview.chromium.org/274014/show
This fixes storage events in single process mode, fixes a bug due to the glue/webkitclient_impl not being updated when I introduced quota support, introduces a params struct for storage events, and is general cleanup. Submitting this first since the change to add the url param made things bigger than I liked.
TBR=darin
TEST=none
BUG=25427
Review URL: http://codereview.chromium.org/348071
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30945 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r-- | chrome/common/render_messages_internal.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index f3887f0..2ff15ed 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -768,12 +768,8 @@ IPC_BEGIN_MESSAGES(View) int64 /* space available to origin */) // Storage events are broadcast to renderer processes. - IPC_MESSAGE_CONTROL5(ViewMsg_DOMStorageEvent, - string16 /* key */, - NullableString16 /* old_value */, - NullableString16 /* new_value */, - string16 /* origin */, - DOMStorageType /* dom_storage_type */) + IPC_MESSAGE_CONTROL1(ViewMsg_DOMStorageEvent, + ViewMsg_DOMStorageEvent_Params) #if defined(IPC_MESSAGE_LOG_ENABLED) // Tell the renderer process to begin or end IPC message logging. |