OLD | NEW |
1 <link rel="import" href="/mojo/public/html/connection.html" as="connection" /> | 1 <link rel="import" href="/mojo/public/sky/connection.sky" as="connection" /> |
2 <link rel="import" href="/mojo/public/html/core.html" as="core" /> | 2 <link rel="import" href="/mojo/public/sky/core.sky" as="core" /> |
3 <link rel="import" href="/mojo/public/html/support.html" as="support" /> | 3 <link rel="import" href="/mojo/public/sky/support.sky" as="support" /> |
4 <link rel="import" href="/sky/services/inspector/inspector.mojom.html" as="inspe
ctor" /> | 4 <link rel="import" href="/sky/services/inspector/inspector.mojom.sky" as="inspec
tor" /> |
5 <link rel="import" href="console-agent.sky" as="ConsoleAgent" /> | 5 <link rel="import" href="console-agent.sky" as="ConsoleAgent" /> |
6 <link rel="import" href="dom-agent.sky" as="DOMAgent" /> | 6 <link rel="import" href="dom-agent.sky" as="DOMAgent" /> |
7 <link rel="import" href="page-agent.sky" as="PageAgent" /> | 7 <link rel="import" href="page-agent.sky" as="PageAgent" /> |
8 <link rel="import" href="worker-agent.sky" as="WorkerAgent" /> | 8 <link rel="import" href="worker-agent.sky" as="WorkerAgent" /> |
9 <link rel="import" href="runtime-agent.sky" as="RuntimeAgent" /> | 9 <link rel="import" href="runtime-agent.sky" as="RuntimeAgent" /> |
10 <link rel="import" href="indexeddb-agent.sky" as="IndexedDBAgent" /> | 10 <link rel="import" href="indexeddb-agent.sky" as="IndexedDBAgent" /> |
11 <link rel="import" href="css-agent.sky" as="CSSAgent" /> | 11 <link rel="import" href="css-agent.sky" as="CSSAgent" /> |
12 <script> | 12 <script> |
13 function InspectorBackend(frontend) { | 13 function InspectorBackend(frontend) { |
14 this.frontend = frontend; | 14 this.frontend = frontend; |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 var frontendHandle = internals.connectToService( | 88 var frontendHandle = internals.connectToService( |
89 "mojo:sky_inspector_server", inspector.InspectorFrontend.name); | 89 "mojo:sky_inspector_server", inspector.InspectorFrontend.name); |
90 window.frontendConnection = new connection.Connection( | 90 window.frontendConnection = new connection.Connection( |
91 frontendHandle, | 91 frontendHandle, |
92 InspectorBackend, | 92 InspectorBackend, |
93 inspector.InspectorFrontend.proxyClass); | 93 inspector.InspectorFrontend.proxyClass); |
94 | 94 |
95 window.frontend = frontendConnection.remote; | 95 window.frontend = frontendConnection.remote; |
96 frontend.listen(9898); | 96 frontend.listen(9898); |
97 </script> | 97 </script> |
OLD | NEW |