| Index: third_party/mojo/src/mojo/public/js/bindings.js
|
| diff --git a/third_party/mojo/src/mojo/public/js/bindings.js b/third_party/mojo/src/mojo/public/js/bindings.js
|
| index 5f8586048ee4d357594dd84764c265de010d14d0..c6c98d5ff713ee9d574ffec0318009f09a8819e0 100644
|
| --- a/third_party/mojo/src/mojo/public/js/bindings.js
|
| +++ b/third_party/mojo/src/mojo/public/js/bindings.js
|
| @@ -17,10 +17,12 @@ define("mojo/public/js/bindings", [
|
| this.receiver = receiver;
|
| }
|
|
|
| + // TODO(hansmuller): remove then after 'Client=' has been removed from Mojom.
|
| ProxyProperties.prototype.getLocalDelegate = function() {
|
| return this.local && StubBindings(this.local).delegate;
|
| }
|
|
|
| + // TODO(hansmuller): remove then after 'Client=' has been removed from Mojom.
|
| ProxyProperties.prototype.setLocalDelegate = function(impl) {
|
| if (this.local)
|
| StubBindings(this.local).delegate = impl;
|
| @@ -48,6 +50,9 @@ define("mojo/public/js/bindings", [
|
| this[kStubProperties] = new StubProperties(delegate);
|
| }
|
|
|
| + // TODO(hansmuller): remove everything except the connection property doc
|
| + // after 'Client=' has been removed from Mojom.
|
| +
|
| // Provides access to properties added to a proxy object without risking
|
| // Mojo interface name collisions. Unless otherwise specified, the initial
|
| // value of all properties is undefined.
|
| @@ -71,6 +76,9 @@ define("mojo/public/js/bindings", [
|
| return (proxy instanceof ProxyBase) ? proxy[kProxyProperties] : proxy;
|
| }
|
|
|
| + // TODO(hansmuller): remove the remote doc after 'Client=' has been
|
| + // removed from Mojom.
|
| +
|
| // Provides access to properties added to a stub object without risking
|
| // Mojo interface name collisions. Unless otherwise specified, the initial
|
| // value of all properties is undefined.
|
|
|