RESOLVED FIXED Bug 72123
Web Inspector: Application cache status should be updated after swapCache().
https://bugs.webkit.org/show_bug.cgi?id=72123
Summary Web Inspector: Application cache status should be updated after swapCache().
Vsevolod Vlasov
Reported 2011-11-11 06:28:27 PST
Application cache status should be updated on swap. Refresh button could be deleted as part if this change, since there is no any need in it.
Attachments
Patch (40.02 KB, patch)
2011-11-14 13:13 PST, Vsevolod Vlasov
pfeldman: review+
Vsevolod Vlasov
Comment 1 2011-11-11 10:40:55 PST
Application cache view should be updated automatically - when shown - in the following cases if view is already shown - when there are no resources yet and new status is IDLE - when old status was UPDATEREADY and new status is IDLE
Vsevolod Vlasov
Comment 2 2011-11-14 13:13:18 PST
Pavel Feldman
Comment 3 2011-11-16 00:11:04 PST
Comment on attachment 115016 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=115016&action=review r+ given the macros are removed prior to landing. > Source/WebCore/ChangeLog:3 > + Web Inspector: Application cache status should be updated on swap. What is "swap" could you please add more details into the changelog? > Source/WebCore/inspector/front-end/ApplicationCacheItemsView.js:130 > + if (this.isShowing() && this._status === applicationCache.IDLE && (oldStatus === applicationCache.UPDATEREADY || !this._resources)) I noticed that you are doing unconditional update upon wasShown. You could instead set a dirty flag here and only update in case of dirty. > Source/WebCore/loader/appcache/ApplicationCacheHost.cpp:244 > +#if ENABLE(INSPECTOR) You don't need this macro here. Instrumentation should take care of overhead, while frame getter and != check are not expensive. > Source/WebCore/loader/appcache/ApplicationCacheHost.cpp:459 > +#if ENABLE(INSPECTOR) ditto. > LayoutTests/http/tests/inspector/resource-tree/appcache-test.js:3 > function createAndNavigateIFrame(url) Drive-by: why is this file under the resource-tree folder?
Vsevolod Vlasov
Comment 4 2011-11-16 08:07:22 PST
> > Source/WebCore/ChangeLog:3 > > + Web Inspector: Application cache status should be updated on swap. > > What is "swap" could you please add more details into the changelog? swapCache() is a method on applicationCache object. I changed bug summary and updated changelog. > > Source/WebCore/inspector/front-end/ApplicationCacheItemsView.js:130 > > + if (this.isShowing() && this._status === applicationCache.IDLE && (oldStatus === applicationCache.UPDATEREADY || !this._resources)) > > I noticed that you are doing unconditional update upon wasShown. You could instead set a dirty flag here and only update in case of dirty. Done. > > Source/WebCore/loader/appcache/ApplicationCacheHost.cpp:244 > > +#if ENABLE(INSPECTOR) > > You don't need this macro here. Instrumentation should take care of overhead, while frame getter and != check are not expensive. > > > Source/WebCore/loader/appcache/ApplicationCacheHost.cpp:459 > > +#if ENABLE(INSPECTOR) > > ditto. Done. > > LayoutTests/http/tests/inspector/resource-tree/appcache-test.js:3 > > function createAndNavigateIFrame(url) > > Drive-by: why is this file under the resource-tree folder? Moved inspector appcache tests to their own folder.
Vsevolod Vlasov
Comment 5 2011-11-16 08:10:03 PST
Steve Block
Comment 6 2011-11-16 09:01:19 PST
Note You need to log in before you can comment on or make changes to this bug.