| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 define("mojo/public/js/bindings/connection", [ | 5 define("mojo/public/js/bindings/connection", [ |
| 6 "mojo/public/js/bindings/router", | 6 "mojo/public/js/bindings/router", |
| 7 ], function(router) { | 7 ], function(router) { |
| 8 | 8 |
| 9 function getValidators(factory) { |
| 10 var validators = factory.prototype.validators; |
| 11 return Array.isArray(validators) ? validators : []; |
| 12 } |
| 13 |
| 9 function Connection(handle, localFactory, remoteFactory) { | 14 function Connection(handle, localFactory, remoteFactory) { |
| 10 this.router_ = new router.Router(handle); | 15 this.router_ = new router.Router(handle); |
| 11 this.remote = new remoteFactory(this.router_); | 16 this.remote = new remoteFactory(this.router_); |
| 12 this.local = new localFactory(this.remote); | 17 this.local = new localFactory(this.remote); |
| 13 this.router_.setIncomingReceiver(this.local); | 18 this.router_.setIncomingReceiver(this.local); |
| 19 this.router_.setValidators( |
| 20 getValidators(localFactory).concat(getValidators(remoteFactory))); |
| 14 } | 21 } |
| 15 | 22 |
| 16 Connection.prototype.close = function() { | 23 Connection.prototype.close = function() { |
| 17 this.router_.close(); | 24 this.router_.close(); |
| 18 this.router_ = null; | 25 this.router_ = null; |
| 19 this.local = null; | 26 this.local = null; |
| 20 this.remote = null; | 27 this.remote = null; |
| 21 }; | 28 }; |
| 22 | 29 |
| 23 Connection.prototype.encounteredError = function() { | 30 Connection.prototype.encounteredError = function() { |
| 24 return this.router_.encounteredError(); | 31 return this.router_.encounteredError(); |
| 25 }; | 32 }; |
| 26 | 33 |
| 27 var exports = {}; | 34 var exports = {}; |
| 28 exports.Connection = Connection; | 35 exports.Connection = Connection; |
| 29 return exports; | 36 return exports; |
| 30 }); | 37 }); |
| OLD | NEW |