| Index: third_party/WebKit/Source/modules/storage/StorageArea.cpp
|
| diff --git a/third_party/WebKit/Source/modules/storage/StorageArea.cpp b/third_party/WebKit/Source/modules/storage/StorageArea.cpp
|
| index 35e82b6892ea2475ad77daf42a0eb655cfaf743e..fae44036a066c4cc61dfe98bb32e0d1c107180a8 100644
|
| --- a/third_party/WebKit/Source/modules/storage/StorageArea.cpp
|
| +++ b/third_party/WebKit/Source/modules/storage/StorageArea.cpp
|
| @@ -159,7 +159,7 @@ size_t StorageArea::memoryBytesUsedByCache()
|
| return m_storageArea->memoryBytesUsedByCache();
|
| }
|
|
|
| -void StorageArea::dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, WebStorageArea* sourceAreaInstance, bool originatedInProcess)
|
| +void StorageArea::dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, WebStorageArea* sourceAreaInstance)
|
| {
|
| // Iterate over all pages that have a StorageNamespaceController supplement.
|
| for (Page* page : Page::ordinaryPages()) {
|
| @@ -190,7 +190,7 @@ static Page* findPageWithSessionStorageNamespace(const WebStorageNamespace& sess
|
| return nullptr;
|
| }
|
|
|
| -void StorageArea::dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, const WebStorageNamespace& sessionNamespace, WebStorageArea* sourceAreaInstance, bool originatedInProcess)
|
| +void StorageArea::dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, const WebStorageNamespace& sessionNamespace, WebStorageArea* sourceAreaInstance)
|
| {
|
| Page* page = findPageWithSessionStorageNamespace(sessionNamespace);
|
| if (!page)
|
|
|