| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 4 <link rel="import" href="chrome://resources/html/icon.html"> | 5 <link rel="import" href="chrome://resources/html/icon.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-icon-button/paper
-icon-button.html"> |
| 6 <link rel="import" href="../extension_control_browser_proxy.html"> | 7 <link rel="import" href="../extension_control_browser_proxy.html"> |
| 7 <link rel="import" href="../focus_row_behavior.html"> | 8 <link rel="import" href="../focus_row_behavior.html"> |
| 8 <link rel="import" href="search_engine_entry_css.html"> | 9 <link rel="import" href="search_engine_entry_css.html"> |
| 9 <link rel="import" href="../settings_shared_css.html"> | 10 <link rel="import" href="../settings_shared_css.html"> |
| 10 | 11 |
| 11 <dom-module id="settings-omnibox-extension-entry"> | 12 <dom-module id="settings-omnibox-extension-entry"> |
| 12 <template> | 13 <template> |
| 13 <style include="settings-shared search-engine-entry"> | 14 <style include="settings-shared search-engine-entry"> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 44 </button> | 45 </button> |
| 45 <button class="dropdown-item" role="option" on-tap="onDisableTap_" | 46 <button class="dropdown-item" role="option" on-tap="onDisableTap_" |
| 46 id="disable"> | 47 id="disable"> |
| 47 $i18n{disable} | 48 $i18n{disable} |
| 48 </button> | 49 </button> |
| 49 </dialog> | 50 </dialog> |
| 50 </div> | 51 </div> |
| 51 </template> | 52 </template> |
| 52 <script src="omnibox_extension_entry.js"></script> | 53 <script src="omnibox_extension_entry.js"></script> |
| 53 </dom-module> | 54 </dom-module> |
| OLD | NEW |