Chromium Code Reviews| OLD | NEW |
|---|---|
| 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"> | |
| 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> |
| 3 <link rel="import" href="chrome://resources/js/util.js"> | |
|
Dan Beam
2016/03/30 02:30:23
ooops
| |
| 4 <link rel="import" href="chrome://md-settings/settings_dialog.html"> | 5 <link rel="import" href="chrome://md-settings/settings_dialog.html"> |
| 5 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 7 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_ browser_proxy.html"> | |
| 6 | 8 |
| 7 <dom-module id="settings-startup-urls-page"> | 9 <dom-module id="settings-startup-urls-page"> |
| 8 <link rel="import" type="css" href="on_startup_shared.css"> | 10 <link rel="import" type="css" href="on_startup_shared.css"> |
| 9 <template> | 11 <template> |
| 10 <style include="settings-shared"> | 12 <style include="settings-shared"> |
| 11 .favicon-image { | 13 .favicon-image { |
| 12 background-size: contain; | 14 background-size: contain; |
| 13 background-repeat: no-repeat; | 15 background-repeat: no-repeat; |
| 14 height: 16px; | 16 height: 16px; |
| 15 width: 16px; | 17 width: 16px; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 49 id="cancel" i18n-content="cancel"></paper-button> | 51 id="cancel" i18n-content="cancel"></paper-button> |
| 50 <paper-button class="action-button" on-tap="onAddTap_" | 52 <paper-button class="action-button" on-tap="onAddTap_" |
| 51 i18n-content="add" disabled="[[!isAddEnabled_(newUrl_)]]"> | 53 i18n-content="add" disabled="[[!isAddEnabled_(newUrl_)]]"> |
| 52 </paper-button> | 54 </paper-button> |
| 53 </div> | 55 </div> |
| 54 </div> | 56 </div> |
| 55 </settings-dialog> | 57 </settings-dialog> |
| 56 </template> | 58 </template> |
| 57 <script src="startup_urls_page.js"></script> | 59 <script src="startup_urls_page.js"></script> |
| 58 </dom-module> | 60 </dom-module> |
| OLD | NEW |