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

Side by Side Diff: chrome/browser/resources/chromeos/login/host-pairing-screen.html

Issue 819633002: Rearanged imports of custom Polymer elements in OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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://oobe/custom_elements.html"> 1 <link rel="import" href="chrome://oobe/custom_elements.html">
2 <link rel="import" href="chrome://resources/polymer/core-animated-pages/core-ani mated-pages.html"> 2 <link rel="import" href="chrome://resources/polymer/core-animated-pages/core-ani mated-pages.html">
3 <link rel="import" href="chrome://resources/polymer/core-iconset-svg/core-iconse t-svg.html"> 3 <link rel="import" href="chrome://resources/polymer/core-iconset-svg/core-iconse t-svg.html">
4 <link rel="import" href="chrome://resources/polymer/core-item/core-item.html"> 4 <link rel="import" href="chrome://resources/polymer/core-item/core-item.html">
5 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> 5 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 6
8 <core-iconset-svg id="host-pairing-icons" iconSize="48"> 7 <core-iconset-svg id="host-pairing-icons" iconSize="48">
9 <svg> 8 <svg>
10 <defs> 9 <defs>
11 <g id="cast"> 10 <g id="cast">
12 <include src="../../../../app/theme/cast_icon.svg"> 11 <include src="../../../../app/theme/cast_icon.svg">
13 </g> 12 </g>
14 </defs> 13 </defs>
15 </svg> 14 </svg>
16 </core-iconset-svg> 15 </core-iconset-svg>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 <div>{{'doneText' | i18n}}</div> 67 <div>{{'doneText' | i18n}}</div>
69 </host-pairing-page> 68 </host-pairing-page>
70 </core-animated-pages> 69 </core-animated-pages>
71 <core-item id="device-indicator"class="font-scalable" 70 <core-item id="device-indicator"class="font-scalable"
72 icon="host-pairing-icons:cast"> 71 icon="host-pairing-icons:cast">
73 <div id="device-label">{{C.deviceName}}</div> 72 <div id="device-label">{{C.deviceName}}</div>
74 </core-item> 73 </core-item>
75 <div id="illustration"></div> 74 <div id="illustration"></div>
76 </template> 75 </template>
77 </polymer-element> 76 </polymer-element>
78 77
ygorshenin1 2014/12/22 16:48:58 could you please remove blank line #77?
dzhioev (left Google) 2014/12/22 17:48:33 Done.
79 <div class="step hidden no-logo fullscreen" id="host-pairing" hidden>
80 <host-pairing-screen name="HostPairingScreen"></host-pairing-screen>
81 </div>
82
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698