| Index: chrome/browser/resources/settings/site_settings/site_settings_category.js
|
| diff --git a/chrome/browser/resources/settings/site_settings/site_settings_category.js b/chrome/browser/resources/settings/site_settings/site_settings_category.js
|
| index ed3abb216059723b1ff989c7f4490106d2e47951..f79344dd1b39f111cf4396b7963305b6f74996d3 100644
|
| --- a/chrome/browser/resources/settings/site_settings/site_settings_category.js
|
| +++ b/chrome/browser/resources/settings/site_settings/site_settings_category.js
|
| @@ -135,20 +135,4 @@ Polymer({
|
| this.categoryEnabled = enabled;
|
| }.bind(this));
|
| },
|
| -
|
| - /**
|
| - * A handler for the Add Site button.
|
| - * @private
|
| - */
|
| - onAddSiteTap_: function() {
|
| - var dialog = document.createElement('add-site-dialog');
|
| - dialog.category = this.category;
|
| - this.shadowRoot.appendChild(dialog);
|
| -
|
| - dialog.open();
|
| -
|
| - dialog.addEventListener('iron-overlay-closed', function() {
|
| - dialog.remove();
|
| - });
|
| - },
|
| });
|
|
|