| Index: third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.cpp b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.cpp
|
| index 5c6d22da8d0bc85677eac8fd289660a6933c3946..1d8740913f7eb307fa82a7f92b5b1751807bc58c 100644
|
| --- a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.cpp
|
| +++ b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.cpp
|
| @@ -193,12 +193,6 @@ void InspectorDOMStorageAgent::didDispatchDOMStorageEvent(const String& key, con
|
|
|
| StorageArea* InspectorDOMStorageAgent::findStorageArea(ErrorString* errorString, PassOwnPtr<protocol::DOMStorage::StorageId> storageId, LocalFrame*& targetFrame)
|
| {
|
| - if (!storageId->hasSecurityOrigin() || !storageId->hasIsLocalStorage()) {
|
| - if (errorString)
|
| - *errorString = "Invalid storageId format";
|
| - return nullptr;
|
| - }
|
| -
|
| String securityOrigin = storageId->getSecurityOrigin();
|
| bool isLocalStorage = storageId->getIsLocalStorage();
|
|
|
|
|