mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 170167.
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@932 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -166,7 +166,7 @@ void BrowserDomStorageSystem::AreaImpl::setItem(
|
||||
if (!Host())
|
||||
return;
|
||||
|
||||
AutoReset<AreaImpl*> auto_reset(&parent_->area_being_processed_, this);
|
||||
base::AutoReset<AreaImpl*> auto_reset(&parent_->area_being_processed_, this);
|
||||
NullableString16 unused;
|
||||
if (!Host()->SetAreaItem(connection_id_, key, newValue, pageUrl,
|
||||
&unused))
|
||||
@ -180,7 +180,7 @@ void BrowserDomStorageSystem::AreaImpl::removeItem(
|
||||
if (!Host())
|
||||
return;
|
||||
|
||||
AutoReset<AreaImpl*> auto_reset(&parent_->area_being_processed_, this);
|
||||
base::AutoReset<AreaImpl*> auto_reset(&parent_->area_being_processed_, this);
|
||||
string16 notused;
|
||||
Host()->RemoveAreaItem(connection_id_, key, pageUrl, ¬used);
|
||||
}
|
||||
@ -189,7 +189,7 @@ void BrowserDomStorageSystem::AreaImpl::clear(const WebURL& pageUrl) {
|
||||
if (!Host())
|
||||
return;
|
||||
|
||||
AutoReset<AreaImpl*> auto_reset(&parent_->area_being_processed_, this);
|
||||
base::AutoReset<AreaImpl*> auto_reset(&parent_->area_being_processed_, this);
|
||||
Host()->ClearArea(connection_id_, pageUrl);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user