diff options
author | tburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-11 23:30:25 +0000 |
---|---|---|
committer | tburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-11 23:30:25 +0000 |
commit | 458061b6c2e1d299689264922b7a274c3963677b (patch) | |
tree | 6f9e1f9274140cd1e2c298c5c027d36b66ab3cbe /content/common | |
parent | 85181aab0f6d85c4f79b82872a2f6eb4bbd63aea (diff) | |
download | chromium_src-458061b6c2e1d299689264922b7a274c3963677b.zip chromium_src-458061b6c2e1d299689264922b7a274c3963677b.tar.gz chromium_src-458061b6c2e1d299689264922b7a274c3963677b.tar.bz2 |
Allow aliasing and merging of session storage namespaces.
R=jam@chromium.org, marja@chromium.org, michaeln@chromium.org
Review URL: https://codereview.chromium.org/62923003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234317 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/dom_storage/dom_storage_messages.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/common/dom_storage/dom_storage_messages.h b/content/common/dom_storage/dom_storage_messages.h index cb07fa7..5aa96e3 100644 --- a/content/common/dom_storage/dom_storage_messages.h +++ b/content/common/dom_storage/dom_storage_messages.h @@ -52,6 +52,11 @@ IPC_MESSAGE_CONTROL1(DOMStorageMsg_Event, IPC_MESSAGE_CONTROL1(DOMStorageMsg_AsyncOperationComplete, bool /* success */) +// Notification instructing the renderer to refresh all cached values for +// the given namespace. +IPC_MESSAGE_CONTROL1(DOMStorageMsg_ResetCachedValues, + int64 /* namespace_id */) + // DOM Storage messages sent from the renderer to the browser. // Note: The 'connection_id' must be the first parameter in these message. |