| Index: chrome/browser/resources/settings/on_startup_page/startup_urls_page.js
|
| diff --git a/chrome/browser/resources/settings/on_startup_page/startup_urls_page.js b/chrome/browser/resources/settings/on_startup_page/startup_urls_page.js
|
| index 18f79048d56233155feffdab5b20669d58645ef9..a3d0fabd227323c50cca2273910b8f47cc47d6b4 100644
|
| --- a/chrome/browser/resources/settings/on_startup_page/startup_urls_page.js
|
| +++ b/chrome/browser/resources/settings/on_startup_page/startup_urls_page.js
|
| @@ -7,15 +7,6 @@
|
| * containing the urls that will be opened when chrome is started.
|
| */
|
|
|
| -/**
|
| - * @typedef {{
|
| - * title: string,
|
| - * tooltip: string,
|
| - * url: string
|
| - * }}
|
| - */
|
| -var StartupPageInfo;
|
| -
|
| Polymer({
|
| is: 'settings-startup-urls-page',
|
|
|
| @@ -44,15 +35,6 @@ Polymer({
|
| },
|
|
|
| /**
|
| - * @param {string} url Location of an image to get a set of icons fors.
|
| - * @return {string} A set of icon URLs.
|
| - * @private
|
| - */
|
| - getIconSet_: function(url) {
|
| - return getFaviconImageSet(url);
|
| - },
|
| -
|
| - /**
|
| * Opens the dialog and registers a listener for removing the dialog from the
|
| * DOM once is closed. The listener is destroyed when the dialog is removed
|
| * (because of 'restamp').
|
| @@ -72,12 +54,4 @@ Polymer({
|
| onUseCurrentPagesTap_: function() {
|
| this.browserProxy_.useCurrentPages();
|
| },
|
| -
|
| - /**
|
| - * @param {!{model: !{index: number}}} e
|
| - * @private
|
| - */
|
| - onRemoveUrlTap_: function(e) {
|
| - this.browserProxy_.removeStartupPage(e.model.index);
|
| - },
|
| });
|
|
|