blob: 3da624cc6de96a7cd2e23d8d1ddbff77ed3e5b6c [file] [log] [blame]
// Copyright 2015 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.
cr.define('extensions', function() {
var Toolbar = Polymer({
is: 'extensions-toolbar',
/** @param {SearchFieldDelegate} delegate */
setSearchDelegate: function(delegate) {
this.$['search-field'].setDelegate(delegate);
},
});
return {Toolbar: Toolbar};
});