blob: 35749874bdd8fa50ef3ae2eeb77f621830b3519e [file] [log] [blame]
// Copyright 2018 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.
/**
* @fileoverview Extern for window.domAutomationController which is used in
* browsertests.
*/
/** @constructor */
function DomAutomationController() {}
/** @param {string} json */
DomAutomationController.prototype.send = function(json) {};
/** @type {DomAutomationController} */
window.domAutomationController;