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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_wait_for_container_ready.html

Issue 2947483002: Create OOBE screen for Waiting for Container ready (Closed)
Patch Set: Rebase and run js format Created 3 years, 6 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
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698