Bug 109282

Summary: Web Inspector: Introduce workspace provider/project type, encapsulate uri creation in SimpleWorkspaceProvider.
Product: WebKit Reporter: Vsevolod Vlasov <vsevik>
Component: Web Inspector (Deprecated)Assignee: Vsevolod Vlasov <vsevik>
Status: RESOLVED FIXED    
Severity: Normal CC: apavlov, keishi, loislo, pfeldman, pmuellr, vsevik, web-inspector-bugs, yurys
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
Patch
none
Patch
none
Patch apavlov: review+

Description Vsevolod Vlasov 2013-02-08 03:40:37 PST
SimpleWorkspaceProvider now fully takes care of creating uri based on project/workspace provider type.
This is the first step on the way to project-per-domain mode for non file system project types.
Comment 1 Vsevolod Vlasov 2013-02-08 03:45:49 PST
Created attachment 187282 [details]
Patch
Comment 2 Vsevolod Vlasov 2013-02-08 03:55:56 PST
Created attachment 187284 [details]
Patch
Comment 3 Vsevolod Vlasov 2013-02-08 04:00:19 PST
Created attachment 187285 [details]
Patch
Comment 4 Alexander Pavlov (apavlov) 2013-02-08 04:40:35 PST
Comment on attachment 187285 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=187285&action=review

> Source/WebCore/ChangeLog:11
> +        Drive-by: ScriptsPanel now uses FileMApping to show anchor location properly.

FileMapping

> Source/WebCore/inspector/front-end/SimpleWorkspaceProvider.js:141
> +

odd line

> Source/WebCore/inspector/front-end/Workspace.js:337
> +                result = result.concat(project.uiSourceCodes());

result.push.apply(result, project.uiSourceCodes());
Comment 5 Vsevolod Vlasov 2013-02-08 06:12:34 PST
Committed r142269: <http://trac.webkit.org/changeset/142269>