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

Side by Side Diff: chrome/browser/resources/settings/search_engines_page/search_engines_list.html

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 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">
2
1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 3 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
4 <link rel="import" href="../settings_vars_css.html"> 5 <link rel="import" href="../settings_vars_css.html">
5 <link rel="import" href="search_engine_entry.html"> 6 <link rel="import" href="search_engine_entry.html">
6 7
7 <dom-module id="settings-search-engines-list"> 8 <dom-module id="settings-search-engines-list">
8 <template> 9 <template>
9 <style include="settings-shared"> 10 <style include="settings-shared">
10 #headers { 11 #headers {
11 display: flex; 12 display: flex;
12 padding: 10px 0; 13 padding: 10px 0;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 tabindex$="[[tabIndex]]" iron-list-tab-index="[[tabIndex]]" 62 tabindex$="[[tabIndex]]" iron-list-tab-index="[[tabIndex]]"
62 last-focused="{{lastFocused_}}"> 63 last-focused="{{lastFocused_}}">
63 </settings-search-engine-entry> 64 </settings-search-engine-entry>
64 </template> 65 </template>
65 </iron-list> 66 </iron-list>
66 </div> 67 </div>
67 </div> 68 </div>
68 </template> 69 </template>
69 <script src="search_engines_list.js"></script> 70 <script src="search_engines_list.js"></script>
70 </dom-module> 71 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698