| Index: chrome/browser/resources/md_bookmarks/list.js
|
| diff --git a/chrome/browser/resources/md_bookmarks/list.js b/chrome/browser/resources/md_bookmarks/list.js
|
| index 0505d470682b99a8874e72f7f2e9c3b8b0c9f86a..c14fee3a875d948df19b170085da4ecbf1dce45f 100644
|
| --- a/chrome/browser/resources/md_bookmarks/list.js
|
| +++ b/chrome/browser/resources/md_bookmarks/list.js
|
| @@ -123,12 +123,6 @@ Polymer({
|
| this.dispatch(bookmarks.actions.deselectItems());
|
| },
|
|
|
| - /** @private */
|
| - selectAllItems_: function() {
|
| - this.dispatch(
|
| - bookmarks.actions.selectAll(this.displayedIds_, this.getState()));
|
| - },
|
| -
|
| /**
|
| * @param{HTMLElement} el
|
| * @private
|
| @@ -168,10 +162,6 @@ Polymer({
|
| range: false,
|
| toggle: true,
|
| }));
|
| - } else if (e.key == 'a' && e.ctrlKey) {
|
| - this.selectAllItems_();
|
| - } else if (e.key == 'Escape') {
|
| - this.deselectItems_();
|
| } else {
|
| handled = false;
|
| }
|
|
|