| Index: content/browser/dom_storage/dom_storage_message_filter.h
|
| ===================================================================
|
| --- content/browser/dom_storage/dom_storage_message_filter.h (revision 133051)
|
| +++ content/browser/dom_storage/dom_storage_message_filter.h (working copy)
|
| @@ -49,17 +49,24 @@
|
| void OnOpenStorageArea(int connection_id, int64 namespace_id,
|
| const GURL& origin);
|
| void OnCloseStorageArea(int connection_id);
|
| + void OnLoadStorageArea(int connection_id, dom_storage::ValuesMap* map);
|
| void OnLength(int connection_id, unsigned* length);
|
| void OnKey(int connection_id, unsigned index, NullableString16* key);
|
| void OnGetItem(int connection_id, const string16& key,
|
| NullableString16* value);
|
| void OnSetItem(int connection_id, const string16& key,
|
| - const string16& value, const GURL& url,
|
| + const string16& value, const GURL& page_url,
|
| WebKit::WebStorageArea::Result* result,
|
| NullableString16* old_value);
|
| + void OnSetItemAsync(int connection_id, int operation_id, const string16& key,
|
| + const string16& value, const GURL& page_url);
|
| +
|
| void OnRemoveItem(int connection_id, const string16& key,
|
| - const GURL& url, NullableString16* old_value);
|
| + const GURL& page_url, NullableString16* old_value);
|
| + void OnRemoveItemAsync(int connection_id, int operation_id,
|
| + const string16& key, const GURL& page_url);
|
| void OnClear(int connection_id, const GURL& url, bool* something_cleared);
|
| + void OnClearAsync(int connection_id, int operation_id, const GURL& page_url);
|
|
|
| // DomStorageContext::EventObserver implementation which
|
| // sends events back to our renderer process.
|
|
|