diff options
author | tburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-26 00:53:33 +0000 |
---|---|---|
committer | tburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-26 00:53:33 +0000 |
commit | f4892bdad475bf8902396feb5118273acbb58237 (patch) | |
tree | 5245c8d7950245a468e1a316992925a35f5a3831 /content/renderer/dom_storage | |
parent | 2cc701697811ec8be880549c6e84443672fac8d7 (diff) | |
download | chromium_src-f4892bdad475bf8902396feb5118273acbb58237.zip chromium_src-f4892bdad475bf8902396feb5118273acbb58237.tar.gz chromium_src-f4892bdad475bf8902396feb5118273acbb58237.tar.bz2 |
When there is a session storage namespace mismatch during prerender swap-in, attempt merging namespaces.
Re-submission of https://codereview.chromium.org/59823003/ see other lgtm's there
Review URL: https://codereview.chromium.org/86593004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237203 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/dom_storage')
-rw-r--r-- | content/renderer/dom_storage/dom_storage_dispatcher.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/content/renderer/dom_storage/dom_storage_dispatcher.cc b/content/renderer/dom_storage/dom_storage_dispatcher.cc index e451a7d..936f217 100644 --- a/content/renderer/dom_storage/dom_storage_dispatcher.cc +++ b/content/renderer/dom_storage/dom_storage_dispatcher.cc @@ -255,8 +255,7 @@ void DomStorageDispatcher::ProxyImpl::SetItem( void DomStorageDispatcher::ProxyImpl::LogGetItem( int connection_id, const string16& key, const base::NullableString16& value) { - throttling_filter_->SendThrottled(new DOMStorageHostMsg_LogGetItem( - connection_id, key, value)); + sender_->Send(new DOMStorageHostMsg_LogGetItem(connection_id, key, value)); } void DomStorageDispatcher::ProxyImpl::RemoveItem( |