| OLD | NEW |
| 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 Loading... |
| 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 | |
| 79 <div class="step hidden no-logo fullscreen" id="host-pairing" hidden> | |
| 80 <host-pairing-screen name="HostPairingScreen"></host-pairing-screen> | |
| 81 </div> | |
| 82 | |
| OLD | NEW |