Bug 89555

Summary: Web Inspector: Move requestId allocation from FileSystem frontend to backend
Product: WebKit Reporter: Taiju Tsuiki <tzik>
Component: Web Inspector (Deprecated)Assignee: Taiju Tsuiki <tzik>
Status: RESOLVED FIXED    
Severity: Normal CC: apavlov, bweinstein, joepeck, keishi, loislo, pfeldman, pmuellr, rik, timothy, webkit.review.bot, yurys
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 68203, 73301, 87856    
Attachments:
Description Flags
Patch
none
Patch none

Taiju Tsuiki
Reported 2012-06-20 02:31:46 PDT
Per https://bugs.webkit.org/show_bug.cgi?id=87856#c6, we should allocate requestId in backend-side, and should rename getFileSystemRoot and readDirectory to requestFileSystemRoot and requestDirectoryContent.
Attachments
Patch (23.87 KB, patch)
2012-06-20 02:37 PDT, Taiju Tsuiki
no flags
Patch (23.84 KB, patch)
2012-06-20 19:06 PDT, Taiju Tsuiki
no flags
Taiju Tsuiki
Comment 1 2012-06-20 02:37:04 PDT
Vsevolod Vlasov
Comment 2 2012-06-20 14:07:30 PDT
Comment on attachment 148527 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=148527&action=review Please fix a couple of nits before landing. > Source/WebCore/ChangeLog:10 > + Please remove extra blank line. > Source/WebCore/inspector/Inspector.json:1441 > + { "name": "requestId", "$ref": "FileSystem.RequestId", "description": "Request identifier. Corresponding fileSystemRootReceived event should have same requestId with this." } "$ref": "RequestId" is enough since you are inside FileSystem domain. > Source/WebCore/inspector/Inspector.json:1453 > + "description": "Returns content of the directory as didReadDirectory event." didReadDirectory ->directoryContentReceived > Source/WebCore/inspector/InspectorFileSystemAgent.cpp:413 > + ASSERT(requestId); This is up to the protocol implementation to provide correct output parameter pointer, you should not check it here. > Source/WebCore/inspector/InspectorFileSystemAgent.cpp:427 > + ASSERT(requestId); Ditto.
Taiju Tsuiki
Comment 3 2012-06-20 19:06:08 PDT
Taiju Tsuiki
Comment 4 2012-06-20 19:09:08 PDT
Comment on attachment 148527 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=148527&action=review Thanks, I updated the patch. >> Source/WebCore/ChangeLog:10 >> + > > Please remove extra blank line. Done >> Source/WebCore/inspector/Inspector.json:1441 >> + { "name": "requestId", "$ref": "FileSystem.RequestId", "description": "Request identifier. Corresponding fileSystemRootReceived event should have same requestId with this." } > > "$ref": "RequestId" is enough since you are inside FileSystem domain. Done >> Source/WebCore/inspector/Inspector.json:1453 >> + "description": "Returns content of the directory as didReadDirectory event." > > didReadDirectory ->directoryContentReceived Done >> Source/WebCore/inspector/InspectorFileSystemAgent.cpp:413 >> + ASSERT(requestId); > > This is up to the protocol implementation to provide correct output parameter pointer, you should not check it here. Removed >> Source/WebCore/inspector/InspectorFileSystemAgent.cpp:427 >> + ASSERT(requestId); > > Ditto. Removed
WebKit Review Bot
Comment 5 2012-06-21 00:24:05 PDT
Comment on attachment 148709 [details] Patch Clearing flags on attachment: 148709 Committed r120906: <http://trac.webkit.org/changeset/120906>
WebKit Review Bot
Comment 6 2012-06-21 00:24:09 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.