Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1132)

Side by Side Diff: sky/framework/inspector/inspector.sky

Issue 697723003: Switch "html" Mojo modules to the Sky module system (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/public/tools/bindings/mojom_bindings_generator.gypi ('k') | sky/framework/shell.sky » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « mojo/public/tools/bindings/mojom_bindings_generator.gypi ('k') | sky/framework/shell.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698