blob: 295be2f1f342f0dad9469f7af8211b44bbccd83d [file] [log] [blame]
// Copyright 2016 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.
goog.require('__crWeb.webUIBase');
goog.provide('__crWeb.webUISend');
window['chrome']['send'] = function(message, args) {
__gCrWeb.message.invokeOnHost({'command': 'chrome.send',
'message': '' + message,
'arguments': args || []});
};