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

Unified Diff: examples/js/wget.js

Issue 837283002: Mojo JS Bindings: merge Application, Shell, ServiceProvider with Sky (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Commit missing file Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | mojo/public/sky/convert_amd_modules_to_sky.py » ('j') | sky/tools/skydb » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/js/wget.js
diff --git a/examples/js/wget.js b/examples/js/wget.js
index e1499aceb261954e1412286054ec83a5508a1425..f3ed3fb6889b89a90b842f4033d852fcea3275f7 100644
--- a/examples/js/wget.js
+++ b/examples/js/wget.js
@@ -29,7 +29,9 @@ define("main", [
"mojo:network_service", NetworkService);
var urlLoader;
- netService.createURLLoader(function(x){urlLoader = x;});
+ netService.createURLLoader(function(urlLoaderProxy) {
+ urlLoader = urlLoaderProxy;
+ });
var urlRequest = new URLRequest({
url: args[1],
« no previous file with comments | « no previous file | mojo/public/sky/convert_amd_modules_to_sky.py » ('j') | sky/tools/skydb » ('J')

Powered by Google App Engine
This is Rietveld 408576698