Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1157)

Unified Diff: content/browser/dom_storage/dom_storage_message_filter.h

Issue 757723002: [Tests not passing yet] Remove prerender sessionStorage namespace merging. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/dom_storage/dom_storage_message_filter.h
diff --git a/content/browser/dom_storage/dom_storage_message_filter.h b/content/browser/dom_storage/dom_storage_message_filter.h
index d93acfd06f6e16b0328813cade02245091475a65..8ac75233007cbaab1238099c5b081e1da229e7d7 100644
--- a/content/browser/dom_storage/dom_storage_message_filter.h
+++ b/content/browser/dom_storage/dom_storage_message_filter.h
@@ -30,8 +30,7 @@ class DOMStorageMessageFilter
: public BrowserMessageFilter,
public DOMStorageContextImpl::EventObserver {
public:
- explicit DOMStorageMessageFilter(int render_process_id,
- DOMStorageContextWrapper* context);
+ explicit DOMStorageMessageFilter(DOMStorageContextWrapper* context);
private:
~DOMStorageMessageFilter() override;
@@ -50,12 +49,9 @@ class DOMStorageMessageFilter
void OnOpenStorageArea(int connection_id, int64 namespace_id,
const GURL& origin);
void OnCloseStorageArea(int connection_id);
- void OnLoadStorageArea(int connection_id, DOMStorageValuesMap* map,
- bool* send_log_get_messages);
+ void OnLoadStorageArea(int connection_id, DOMStorageValuesMap* map);
void OnSetItem(int connection_id, const base::string16& key,
const base::string16& value, const GURL& page_url);
- void OnLogGetItem(int connection_id, const base::string16& key,
- const base::NullableString16& value);
void OnRemoveItem(int connection_id, const base::string16& key,
const GURL& page_url);
void OnClear(int connection_id, const GURL& page_url);
@@ -74,7 +70,6 @@ class DOMStorageMessageFilter
const GURL& page_url) override;
void OnDOMStorageAreaCleared(const DOMStorageArea* area,
const GURL& page_url) override;
- void OnDOMSessionStorageReset(int64 namespace_id) override;
void SendDOMStorageEvent(
const DOMStorageArea* area,
@@ -83,7 +78,6 @@ class DOMStorageMessageFilter
const base::NullableString16& new_value,
const base::NullableString16& old_value);
- int render_process_id_;
scoped_refptr<DOMStorageContextImpl> context_;
scoped_ptr<DOMStorageHost> host_;
int connection_dispatching_message_for_;
« no previous file with comments | « content/browser/dom_storage/dom_storage_host.cc ('k') | content/browser/dom_storage/dom_storage_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698