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

Unified Diff: mojo/public/js/associated_bindings.js

Issue 2796253002: Associated Message Validation (Closed)
Patch Set: Validate payloadInterfaceIds before getting it. Use [0] for dimensions for validateArrayPointer. Ca… Created 3 years, 8 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/js/BUILD.gn ('k') | mojo/public/js/codec.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/js/associated_bindings.js
diff --git a/mojo/public/js/associated_bindings.js b/mojo/public/js/associated_bindings.js
new file mode 100644
index 0000000000000000000000000000000000000000..fdfe3c296d5e6c1e9c3f4c657d548e240dcc62c0
--- /dev/null
+++ b/mojo/public/js/associated_bindings.js
@@ -0,0 +1,17 @@
+// Copyright 2017 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/js/associated_bindings", [
+ "mojo/public/js/core",
+ "mojo/public/js/interface_types",
+ "mojo/public/js/lib/interface_endpoint_client",
+ "mojo/public/js/lib/interface_endpoint_handle",
+], function(core, types, interfaceEndpointClient, interfaceEndpointHandle) {
+
+ var exports = {};
+ exports.AssociatedInterfacePtrInfo = types.AssociatedInterfacePtrInfo;
+ exports.AssociatedInterfaceRequest = types.AssociatedInterfaceRequest;
+
+ return exports;
+});
« no previous file with comments | « mojo/public/js/BUILD.gn ('k') | mojo/public/js/codec.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698