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

Unified Diff: mojo/public/bindings/js/router.js

Issue 223233002: Mojo: Move mojo/public/bindings/js to mojo/public/js/bindings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & restore ordering Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/public/bindings/js/constants.cc ('k') | mojo/public/js/bindings/codec.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/bindings/js/router.js
diff --git a/mojo/public/bindings/js/router.js b/mojo/public/bindings/js/router.js
deleted file mode 100644
index 4a51674076ea4483ef79b17f447475e98aef178d..0000000000000000000000000000000000000000
--- a/mojo/public/bindings/js/router.js
+++ /dev/null
@@ -1,75 +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.
-
-define("mojo/public/bindings/js/router", [
- "mojo/public/bindings/js/codec",
- "mojo/public/bindings/js/connector",
-], function(codec, connector) {
-
- function Router(handle) {
- this.connector_ = new connector.Connector(handle);
- this.incomingReceiver_ = null;
- this.nextRequestID_ = 0;
- this.responders_ = {};
-
- this.connector_.setIncomingReceiver({
- accept: this.handleIncomingMessage_.bind(this),
- });
- }
-
- Router.prototype.close = function() {
- this.responders_ = {}; // Drop any responders.
- this.connector_.close();
- };
-
- Router.prototype.accept = function(message) {
- this.connector_.accept(message);
- };
-
- Router.prototype.acceptWithResponder = function(message, responder) {
- // Reserve 0 in case we want it to convey special meaning in the future.
- var requestID = this.nextRequestID_++;
- if (requestID == 0)
- requestID = this.nextRequestID_++;
-
- message.setRequestID(requestID);
- this.connector_.accept(message);
-
- this.responders_[requestID] = responder;
- };
-
- Router.prototype.setIncomingReceiver = function(receiver) {
- this.incomingReceiver_ = receiver;
- };
-
- Router.prototype.encounteredError = function() {
- return this.connector_.encounteredError();
- };
-
- Router.prototype.handleIncomingMessage_ = function(message) {
- var flags = message.getFlags();
- if (flags & codec.kMessageExpectsResponse) {
- if (this.incomingReceiver_) {
- this.incomingReceiver_.acceptWithResponder(message, this);
- } else {
- // If we receive a request expecting a response when the client is not
- // listening, then we have no choice but to tear down the pipe.
- this.close();
- }
- } else if (flags & codec.kMessageIsResponse) {
- var reader = new codec.MessageReader(message);
- var requestID = reader.requestID;
- var responder = this.responders_[requestID];
- delete this.responders_[requestID];
- responder.accept(message);
- } else {
- if (this.incomingReceiver_)
- this.incomingReceiver_.accept(message);
- }
- };
-
- var exports = {};
- exports.Router = Router;
- return exports;
-});
« no previous file with comments | « mojo/public/bindings/js/constants.cc ('k') | mojo/public/js/bindings/codec.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698