| Index: chrome/browser/resources/md_history/history_toolbar.js
|
| diff --git a/chrome/browser/resources/md_history/history_toolbar.js b/chrome/browser/resources/md_history/history_toolbar.js
|
| index 356866d0a0b7b8224911f2aa1bc2a8c8bf15cfa1..ff69a07de8c02eec80a040015ffd6d4ca5cf001f 100644
|
| --- a/chrome/browser/resources/md_history/history_toolbar.js
|
| +++ b/chrome/browser/resources/md_history/history_toolbar.js
|
| @@ -88,10 +88,10 @@ Polymer({
|
| return;
|
|
|
| this.searchTerm = search;
|
| - var searchField = /** @type {SearchField} */(this.$['search-input']);
|
| - searchField.showAndFocus().then(function(showing) {
|
| - if (showing) searchField.setValue(search);
|
| - });
|
| + var toolbar = /** @type {!CrToolbarElement} */(this.$['main-toolbar']);
|
| + //toolbar.showAndFocus().then(function(showing) {
|
| + //if (showing) toolbar.setValue(search);
|
| + //});
|
| },
|
|
|
| /**
|
| @@ -104,8 +104,8 @@ Polymer({
|
|
|
| attached: function() {
|
| this.searchFieldDelegate_ = new ToolbarSearchFieldDelegate(this);
|
| - /** @type {SearchField} */(this.$['search-input'])
|
| - .setDelegate(this.searchFieldDelegate_);
|
| + /** @type {!CrToolbarElement} */(this.$['main-toolbar'])
|
| + //.setDelegate(this.searchFieldDelegate_);
|
| },
|
|
|
| onClearSelectionTap_: function() {
|
|
|