RESOLVED FIXED Bug 139519
Get rid of the storage strategy
https://bugs.webkit.org/show_bug.cgi?id=139519
Summary Get rid of the storage strategy
Anders Carlsson
Reported 2014-12-10 18:05:31 PST
Get rid of the storage strategy
Attachments
Patch (39.78 KB, patch)
2014-12-10 18:06 PST, Anders Carlsson
no flags
Patch (41.64 KB, patch)
2014-12-10 20:14 PST, Anders Carlsson
koivisto: review+
Anders Carlsson
Comment 1 2014-12-10 18:06:45 PST
Anders Carlsson
Comment 2 2014-12-10 20:14:22 PST
Csaba Osztrogonác
Comment 3 2014-12-11 03:39:44 PST
Comment on attachment 243092 [details] Patch nit: Please remove the duplicated changelog entries.
Antti Koivisto
Comment 4 2014-12-11 09:08:04 PST
Comment on attachment 243092 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=243092&action=review > Source/WebCore/ChangeLog:31 > + * storage/StorageStrategy.cpp: Removed. > + * storage/StorageStrategy.h: Removed. Nice! > Source/WebCore/ChangeLog:36 > + > +2014-12-10 Anders Carlsson <andersca@apple.com> > + > + Get rid of the storage strategy > + https://bugs.webkit.org/show_bug.cgi?id=139519 Duplicated ChangeLog entry > Source/WebKit2/ChangeLog:18 > + * WebProcess/WebCoreSupport/WebPlatformStrategies.h: > + > +2014-12-10 Anders Carlsson <andersca@apple.com> > + > + Get rid of the storage strategy > + https://bugs.webkit.org/show_bug.cgi?id=139519 Here too.
Anders Carlsson
Comment 5 2014-12-11 09:12:15 PST
Joseph Pecoraro
Comment 6 2014-12-11 17:55:22 PST
Comment on attachment 243092 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=243092&action=review > Source/WebCore/page/PageGroup.cpp:170 > StorageNamespace* PageGroup::localStorage() > { > - if (!m_localStorage) > - m_localStorage = StorageNamespace::localStorageNamespace(this); > - > return m_localStorage.get(); > } The inspector used this interface, and always expected a Storage object, and is now crashing. It doesn't look like m_localStorage is ever assigned now, so this is always null. Is this being phased out, or is there something else we should use in Inspector land?
Joseph Pecoraro
Comment 7 2014-12-11 17:58:16 PST
Comment on attachment 243092 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=243092&action=review > Source/WebCore/page/DOMWindow.cpp:864 > + if (document->securityOrigin()->canAccessLocalStorage(document->topOrigin())) > + storageArea = page->storageNamespaceProvider().localStorageNamespace().storageArea(document->securityOrigin()); > + else > + storageArea = page->storageNamespaceProvider().transientLocalStorageNamespace(*document->topOrigin()).storageArea(document->securityOrigin()); Sounds like we should switch to using storageNamespaceProvider.
Note You need to log in before you can comment on or make changes to this bug.