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

Unified Diff: mojo/public/js/new_bindings/interface_types.js

Issue 2779533002: Revert of Mojo JS bindings: change module loading solution. (Closed)
Patch Set: Created 3 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
Index: mojo/public/js/new_bindings/interface_types.js
diff --git a/mojo/public/js/new_bindings/interface_types.js b/mojo/public/js/new_bindings/interface_types.js
index f82789d2e97cf0e0ddff90dc584a4f23360a8768..01ea2d1dd466a76f2f5ccb1259efe0eac00a1677 100644
--- a/mojo/public/js/new_bindings/interface_types.js
+++ b/mojo/public/js/new_bindings/interface_types.js
@@ -2,7 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-(function() {
+define("mojo/public/js/interface_types", [
+ "mojo/public/js/core",
+], function(core) {
+
// ---------------------------------------------------------------------------
function InterfacePtrInfo(handle, version) {
@@ -11,14 +14,14 @@
}
InterfacePtrInfo.prototype.isValid = function() {
- return this.handle instanceof MojoHandle;
+ return core.isHandle(this.handle);
};
InterfacePtrInfo.prototype.close = function() {
if (!this.isValid())
return;
- this.handle.close();
+ core.close(this.handle);
this.handle = null;
this.version = 0;
};
@@ -30,17 +33,20 @@
}
InterfaceRequest.prototype.isValid = function() {
- return this.handle instanceof MojoHandle;
+ return core.isHandle(this.handle);
};
InterfaceRequest.prototype.close = function() {
if (!this.isValid())
return;
- this.handle.close();
+ core.close(this.handle);
this.handle = null;
};
- mojoBindings.InterfacePtrInfo = InterfacePtrInfo;
- mojoBindings.InterfaceRequest = InterfaceRequest;
-})();
+ var exports = {};
+ exports.InterfacePtrInfo = InterfacePtrInfo;
+ exports.InterfaceRequest = InterfaceRequest;
+
+ return exports;
+});
« no previous file with comments | « mojo/public/js/new_bindings/connector.js ('k') | mojo/public/js/new_bindings/lib/control_message_handler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698