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

Unified Diff: examples/js/main.js

Issue 757703002: Creates a JavaScript Applicaiton (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Do not try to call undefined Application methods. 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 side-by-side diff with in-line comments
Download patch
Index: examples/js/main.js
diff --git a/examples/js/main.js b/examples/js/main.js
deleted file mode 100644
index c64f3edc0548fe2aab892ac08e80d5974943b606..0000000000000000000000000000000000000000
--- a/examples/js/main.js
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// This trivial app just loads "cnn.com" using the Mojo Network and URLLoader
-// services and then prints a brief summary of the response.
-//
-// To run it this file must be specified as a URL. For
-// example:
-// (cd YOUR_DIR/mojo/apps/js; python -m SimpleHTTPServer ) &
-// mojo_shell \
-// --content-handlers=application/javascript,mojo:js_content_handler \
-// http://localhost:8000/test.js
-
-define("test", [
- "mojo/apps/js/mojo",
- "mojo/public/js/core",
- "mojo/public/js/connection",
- "mojo/public/js/support",
- "mojo/services/public/interfaces/network/network_service.mojom",
- "mojo/services/public/interfaces/network/url_loader.mojom",
- "console"
-], function(mojo, core, connection, support, net, loader, console) {
-
- var networkService = mojo.shell().connectToService(
- "mojo:network_service", net.NetworkService);
-
- var urlLoaderPipe = core.createMessagePipe();
- networkService.createURLLoader(urlLoaderPipe.handle1);
- var urlLoaderConnection = new connection.Connection(
- urlLoaderPipe.handle0,
- function(){},
- loader.URLLoader.proxyClass);
-
- var urlRequest = new loader.URLRequest({
- url: "http://www.cnn.com",
- method: "GET",
- auto_follow_redirects: true
- });
-
- var urlRequestPromise = urlLoaderConnection.remote.start(urlRequest);
- urlRequestPromise.then(function(result) {
- for(var key in result.response)
- console.log(key + " => " + result.response[key]);
- var drainDataPromise = core.drainData(result.response.body);
- drainDataPromise.then(function(result) {
- console.log("read " + result.buffer.byteLength + " bytes");
- }).then(function() {
- mojo.quit();
- });
- });
-});
« no previous file with comments | « examples/js/hello.js ('k') | examples/js/world.js » ('j') | gin/modules/module_registry.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698