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

Side by Side Diff: third_party/WebKit/LayoutTests/mojo/module-loading.html

Issue 2759563004: Mojo JS bindings: change module loading solution. (Closed)
Patch Set: . Created 3 years, 9 months 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/pylib/mojom/generate/generator.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>Mojo JavaScript bindings module loading tests</title>
3 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script>
5 <script src="file:///gen/mojo/public/js/mojo_bindings.js"></script>
6 <script src="file:///gen/mojo/public/interfaces/bindings/tests/echo_import.mojom .js"></script>
7 <script src="file:///gen/mojo/public/interfaces/bindings/tests/echo.mojom.js"></ script>
8 <script>
9
10 promise_test(async () => {
11 function EchoImpl() {}
12 EchoImpl.prototype.echoPoint = function(point) {
13 return Promise.resolve({result: point});
14 };
15
16 var echoServicePtr = new test.echo.mojom.EchoPtr();
17 var echoServiceBinding = new mojoBindings.Binding(
18 test.echo.mojom.Echo,
19 new EchoImpl(),
20 mojoBindings.makeRequest(echoServicePtr));
21 var result = (await echoServicePtr.echoPoint({x: 1, y: 2})).result;
22 assert_equals(1, result.x);
23 assert_equals(2, result.y);
24 }, 'Basics');
25
26 </script>
OLDNEW
« no previous file with comments | « mojo/public/tools/bindings/pylib/mojom/generate/generator.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698