| Index: chrome/browser/resources/md_history/list_container.js
|
| diff --git a/chrome/browser/resources/md_history/list_container.js b/chrome/browser/resources/md_history/list_container.js
|
| index 4ddd2209ef31ed9e1814bedffcc1d3c2b286c353..1ccf05c45ee354ec69f40e2f127a3b0badff3649 100644
|
| --- a/chrome/browser/resources/md_history/list_container.js
|
| +++ b/chrome/browser/resources/md_history/list_container.js
|
| @@ -95,6 +95,11 @@ Polymer({
|
| this.queryHistory(false);
|
| },
|
|
|
| + /** @return {HTMLElement} */
|
| + getContentScrollTarget: function() {
|
| + return this.getSelectedList_();
|
| + },
|
| +
|
| /** @return {number} */
|
| getSelectedItemCount: function() {
|
| return this.getSelectedList_().selectedPaths.size;
|
| @@ -253,7 +258,5 @@ Polymer({
|
| * @return {HTMLElement}
|
| * @private
|
| */
|
| - getSelectedList_: function() {
|
| - return this.$.content.selectedItem;
|
| - },
|
| + getSelectedList_: function() { return this.$.content.selectedItem; },
|
| });
|
|
|