| 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
|
|
|