Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: chrome/browser/resources/settings/on_startup_page/startup_url_entry.html

Issue 1919183005: Cleanup: Extract icon related methods outside of util.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename favicon.html to icon.html Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/html/util.html"> 2 <link rel="import" href="chrome://resources/html/icon.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
7 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_ browser_proxy.html"> 7 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_ browser_proxy.html">
8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> 8 <link rel="import" href="chrome://md-settings/settings_shared_css.html">
9 9
10 <dom-module id="settings-startup-url-entry"> 10 <dom-module id="settings-startup-url-entry">
11 <template> 11 <template>
12 <style include="settings-shared"> 12 <style include="settings-shared">
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 <paper-item id="remove" on-tap="onRemoveTap_"> 44 <paper-item id="remove" on-tap="onRemoveTap_">
45 $i18n{onStartupRemove} 45 $i18n{onStartupRemove}
46 </paper-item> 46 </paper-item>
47 </div> 47 </div>
48 </iron-dropdown> 48 </iron-dropdown>
49 </template> 49 </template>
50 </div> 50 </div>
51 </template> 51 </template>
52 <script src="startup_url_entry.js"></script> 52 <script src="startup_url_entry.js"></script>
53 </dom-module> 53 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698