blob: f6b1a0c64f73e412b2ebad6f023ca76e6ed98fa9 [file] [log] [blame]
// Copyright (c) 2012 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.
var g_commands = {
createTab: executeCreateTab
};
function executeCommand(name, params, callback) {
g_commands[name](params, callback);
}
function executeCreateTab(params, callback) {
chrome.tabs.create(params, function() {
callback(params);
});
}