blob: 81c0fb9cf6db289e320202e935688257ed55682a [file] [log] [blame]
// Copyright 2014 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('main', [
'mojo/public/js/bindings',
'content/test/data/web_ui_test_mojo_bindings.mojom',
'content/public/renderer/frame_interfaces',
], function (bindings, webUITest, interfaceProvider) {
var browserTarget;
return function() {
browserTarget = new webUITest.BrowserTargetPtr(
interfaceProvider.getInterface(webUITest.BrowserTarget.name));
browserTarget.start().then(function() {
browserTarget.stop();
});
};
});