OLD | NEW |
(Empty) | |
| 1 <!-- Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> |
| 4 |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 6 |
| 7 <dom-module id="wait-for-container-ready-md"> |
| 8 <template> |
| 9 <link rel="stylesheet" href="oobe_wait_for_container_ready.css"> |
| 10 <link rel="stylesheet" href="oobe_dialog_parameters.css"> |
| 11 <oobe-dialog id="waitForContainerReadyDialog" role="dialog" hide-shadow> |
| 12 <iron-icon src="https://www.gstatic.com/opa-chromeos/oobe/images/assistant
_logo.png" class="oobe-icon"> |
| 13 </iron-icon> |
| 14 <div class="header"> |
| 15 <h1 class="title" i18n-content="waitForContainerReadyTitle"></h1> |
| 16 <div class="subtitle"> |
| 17 <div i18n-content="waitForContainerReadyIntroMessage"></div> |
| 18 </div> |
| 19 <div class="content"> |
| 20 <paper-progress class="slow" indeterminate></paper-progress> |
| 21 </div> |
| 22 </div> |
| 23 </oobe-dialog> |
| 24 </template> |
| 25 </dom-module> |
OLD | NEW |