Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html"> | 1 <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"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/html/icon.html"> | 4 <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"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> |
| 6 <link rel="import" href="/search_engines_page/search_engines_browser_proxy.html" > | 6 <link rel="import" href="/extension_control_browser_proxy.html"> |
|
Dan Beam
2016/11/16 03:40:52
i can leave this if you want... it's only needed f
tommycli
2016/11/16 21:34:35
No need IMO. Good as the patch has it.
| |
| 7 <link rel="import" href="/search_engines_page/search_engine_entry_css.html"> | 7 <link rel="import" href="/search_engines_page/search_engine_entry_css.html"> |
| 8 <link rel="import" href="/settings_shared_css.html"> | 8 <link rel="import" href="/settings_shared_css.html"> |
| 9 | 9 |
| 10 <dom-module id="settings-omnibox-extension-entry"> | 10 <dom-module id="settings-omnibox-extension-entry"> |
| 11 <template> | 11 <template> |
| 12 <style include="settings-shared search-engine-entry"> | 12 <style include="settings-shared search-engine-entry"> |
| 13 .name-column { | 13 .name-column { |
| 14 flex: 3; | 14 flex: 3; |
| 15 } | 15 } |
| 16 | 16 |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 35 </button> | 35 </button> |
| 36 <button class="dropdown-item" role="option" on-tap="onDisableTap_" | 36 <button class="dropdown-item" role="option" on-tap="onDisableTap_" |
| 37 id="disable"> | 37 id="disable"> |
| 38 $i18n{disable} | 38 $i18n{disable} |
| 39 </button> | 39 </button> |
| 40 </dialog> | 40 </dialog> |
| 41 </div> | 41 </div> |
| 42 </template> | 42 </template> |
| 43 <script src="omnibox_extension_entry.js"></script> | 43 <script src="omnibox_extension_entry.js"></script> |
| 44 </dom-module> | 44 </dom-module> |
| OLD | NEW |