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

Unified Diff: third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp

Issue 1742863002: Remove unnused originatedInProcess parameter in blink::WebStorageEventDispatcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months 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: third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp b/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp
index 8888ac486f1f3cd2918c3df4ecb072a9d64baad0..c0a333ffea1a337f08e20282d1661d4e7e56e3ff 100644
--- a/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp
+++ b/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp
@@ -42,25 +42,24 @@ namespace blink {
void WebStorageEventDispatcher::dispatchLocalStorageEvent(
const WebString& key, const WebString& oldValue,
const WebString& newValue, const WebURL& origin,
- const WebURL& pageURL, WebStorageArea* sourceAreaInstance,
- bool originatedInProcess)
+ const WebURL& pageURL, WebStorageArea* sourceAreaInstance)
{
RefPtr<SecurityOrigin> securityOrigin = SecurityOrigin::create(origin);
StorageArea::dispatchLocalStorageEvent(
key, oldValue, newValue, securityOrigin.get(), pageURL,
- sourceAreaInstance, originatedInProcess);
+ sourceAreaInstance);
}
void WebStorageEventDispatcher::dispatchSessionStorageEvent(
const WebString& key, const WebString& oldValue,
const WebString& newValue, const WebURL& origin,
const WebURL& pageURL, const WebStorageNamespace& sessionNamespace,
- WebStorageArea* sourceAreaInstance, bool originatedInProcess)
+ WebStorageArea* sourceAreaInstance)
{
RefPtr<SecurityOrigin> securityOrigin = SecurityOrigin::create(origin);
StorageArea::dispatchSessionStorageEvent(
key, oldValue, newValue, securityOrigin.get(), pageURL,
- sessionNamespace, sourceAreaInstance, originatedInProcess);
+ sessionNamespace, sourceAreaInstance);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/storage/StorageArea.cpp ('k') | third_party/WebKit/public/web/WebStorageEventDispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698