RESOLVED FIXED Bug 71850
Web Inspector: Extract ApplicationCacheModel from ApplicationCacheItemsView.
https://bugs.webkit.org/show_bug.cgi?id=71850
Summary Web Inspector: Extract ApplicationCacheModel from ApplicationCacheItemsView.
Vsevolod Vlasov
Reported 2011-11-08 13:05:41 PST
Extract ApplicationCacheModel from ApplicationCacheItemsView. This is needed for https://bugs.webkit.org/show_bug.cgi?id=64581 (Web Inspector: ApplicationCache UI is confusing and incorrect.)
Attachments
Patch (10.88 KB, patch)
2011-11-08 13:26 PST, Vsevolod Vlasov
no flags
Patch (14.90 KB, patch)
2011-11-09 04:33 PST, Vsevolod Vlasov
pfeldman: review+
Vsevolod Vlasov
Comment 1 2011-11-08 13:26:19 PST
Joseph Pecoraro
Comment 2 2011-11-08 14:03:52 PST
Comment on attachment 114143 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=114143&action=review > Source/WebCore/WebCore.vcproj/WebCore.vcproj:68574 > RelativePath="..\inspector\front-end\ApplicationCacheItemsView.js" > > > </File> > + <File > + RelativePath="..\inspector\front-end\ApplicationCacheModel.js" > + > > + </File> Just an observation, this file uses tabs instead of spaces.
Pavel Feldman
Comment 3 2011-11-08 20:43:23 PST
Comment on attachment 114143 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=114143&action=review > Source/WebCore/inspector/front-end/inspector.js:347 > + this.applicationCacheModel = new WebInspector.ApplicationCacheModel(); We should not run appcache initialization code + request appcaches on load and should not make applicationCacheModel instance public. I'd suggest that you keep the private pointer to it in the view + create it lazily.
Vsevolod Vlasov
Comment 4 2011-11-09 04:33:59 PST
Vsevolod Vlasov
Comment 5 2011-11-09 04:36:02 PST
(In reply to comment #3) > (From update of attachment 114143 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=114143&action=review > > > Source/WebCore/inspector/front-end/inspector.js:347 > > + this.applicationCacheModel = new WebInspector.ApplicationCacheModel(); > > We should not run appcache initialization code + request appcaches on load and should not make applicationCacheModel instance public. I'd suggest that you keep the private pointer to it in the view + create it lazily. Done. > Just an observation, this file uses tabs instead of spaces. Fixed, thanks for spotting that!
Vsevolod Vlasov
Comment 6 2011-11-09 05:02:22 PST
Note You need to log in before you can comment on or make changes to this bug.