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

Unified Diff: extensions/test/data/api_test_base_unittest.js

Issue 2405093003: [WIP] Mojo native bindings interface.
Patch Set: fixes webui tests Created 3 years, 10 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 | « extensions/renderer/resources/keep_alive.js ('k') | mojo/public/js/bindings.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/test/data/api_test_base_unittest.js
diff --git a/extensions/test/data/api_test_base_unittest.js b/extensions/test/data/api_test_base_unittest.js
index 094a623968110292ce76abeff5ee517125a7cc75..e9d456745574de1601da516e517bc50704d2abff 100644
--- a/extensions/test/data/api_test_base_unittest.js
+++ b/extensions/test/data/api_test_base_unittest.js
@@ -37,14 +37,11 @@ unittestBindings.exportTests([
function testMojoModulesAreAvailable() {
Promise.all([
requireAsync('mojo/public/js/bindings'),
- requireAsync('mojo/public/js/core'),
requireAsync('content/public/renderer/frame_interfaces'),
]).then(test.callback(function(modules) {
var bindings = modules[0];
- var core = modules[1];
- var frameInterfaces = modules[2];
+ var frameInterfaces = modules[1];
test.assertTrue(!!bindings.Binding);
- test.assertTrue(!!core.createMessagePipe);
test.assertTrue(!!frameInterfaces.getInterface);
}));
},
« no previous file with comments | « extensions/renderer/resources/keep_alive.js ('k') | mojo/public/js/bindings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698