| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 5 <link rel="import" href="../i18n_setup.html"> | 6 <link rel="import" href="../i18n_setup.html"> |
| 6 <link rel="import" href="search_engines_browser_proxy.html"> | 7 <link rel="import" href="search_engines_browser_proxy.html"> |
| 7 | 8 |
| 8 <dom-module id="settings-search-engine-dialog"> | 9 <dom-module id="settings-search-engine-dialog"> |
| 9 <template> | 10 <template> |
| 10 <style include="settings-shared"> | 11 <style include="settings-shared"> |
| 11 :host { | 12 :host { |
| 12 --paper-input-container: { | 13 --paper-input-container: { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 $i18n{cancel}</paper-button> | 48 $i18n{cancel}</paper-button> |
| 48 <paper-button id="actionButton" class="action-button" | 49 <paper-button id="actionButton" class="action-button" |
| 49 on-tap="onActionButtonTap_"> | 50 on-tap="onActionButtonTap_"> |
| 50 [[actionButtonText_]] | 51 [[actionButtonText_]] |
| 51 </paper-button> | 52 </paper-button> |
| 52 </div> | 53 </div> |
| 53 </dialog> | 54 </dialog> |
| 54 </template> | 55 </template> |
| 55 <script src="search_engine_dialog.js"></script> | 56 <script src="search_engine_dialog.js"></script> |
| 56 </dom-module> | 57 </dom-module> |
| OLD | NEW |