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

Side by Side Diff: chrome/browser/resources/settings/device_page/display_layout.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"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior /iron-resizable-behavior.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior /iron-resizable-behavior.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma terial.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma terial.html">
4 <link rel="import" href="drag_behavior.html"> 5 <link rel="import" href="drag_behavior.html">
5 <link rel="import" href="layout_behavior.html"> 6 <link rel="import" href="layout_behavior.html">
6 <link rel="import" href="../settings_shared_css.html"> 7 <link rel="import" href="../settings_shared_css.html">
7 8
8 <dom-module id="display-layout"> 9 <dom-module id="display-layout">
9 <template> 10 <template>
10 <style include="settings-shared"> 11 <style include="settings-shared">
11 /* Use relative position with no offset so that display divs (children), 12 /* Use relative position with no offset so that display divs (children),
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 draggable="[[dragEnabled]]" on-tap="onSelectDisplayTap_" 65 draggable="[[dragEnabled]]" on-tap="onSelectDisplayTap_"
65 style$="[[getDivStyle_(item.id, item.bounds, visualScale)]]" 66 style$="[[getDivStyle_(item.id, item.bounds, visualScale)]]"
66 selected$="[[isSelected_(item, selectedDisplay)]]"> 67 selected$="[[isSelected_(item, selectedDisplay)]]">
67 [[item.name]] 68 [[item.name]]
68 </paper-material> 69 </paper-material>
69 </template> 70 </template>
70 </div> 71 </div>
71 </template> 72 </template>
72 <script src="display_layout.js"></script> 73 <script src="display_layout.js"></script>
73 </dom-module> 74 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698