| OLD | NEW | 
|---|
| 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 
| 2      Use of this source code is governed by a BSD-style license that can be | 2      Use of this source code is governed by a BSD-style license that can be | 
| 3      found in the LICENSE file. --> | 3      found in the LICENSE file. --> | 
| 4 | 4 | 
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
    s/iron-flex-layout.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
    s/iron-flex-layout.html"> | 
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
    l"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
    l"> | 
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
    conset-svg.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
    conset-svg.html"> | 
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
    ogress.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
    ogress.html"> | 
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
    "> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
    "> | 
| 10 | 10 | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
| 23   </svg> | 23   </svg> | 
| 24 </iron-iconset-svg> | 24 </iron-iconset-svg> | 
| 25 | 25 | 
| 26 <dom-module name="oobe-update-md"> | 26 <dom-module name="oobe-update-md"> | 
| 27   <template> | 27   <template> | 
| 28     <link rel="stylesheet" href="oobe_update.css"> | 28     <link rel="stylesheet" href="oobe_update.css"> | 
| 29     <link rel="stylesheet" href="oobe_dialog_parameters.css"> | 29     <link rel="stylesheet" href="oobe_dialog_parameters.css"> | 
| 30     <oobe-dialog hidden="[[!checkingForUpdate]]"> | 30     <oobe-dialog hidden="[[!checkingForUpdate]]"> | 
| 31       <iron-icon icon="oobe-update:googleg" class="oobe-icon"></iron-icon> | 31       <iron-icon icon="oobe-update:googleg" class="oobe-icon"></iron-icon> | 
| 32       <div class="header"> | 32       <div class="header"> | 
| 33         <h1 class="title" i18n-content="checkingForUpdates"></h1> | 33         <h1 class="title">$i18n{checkingForUpdates}</h1> | 
| 34         <div class="subtitle" i18n-content="checkingForUpdatesMsg"></div> | 34         <div class="subtitle">$i18n{checkingForUpdatesMsg}</div> | 
| 35         <div class="subtitle" id="checkingForUpdateCancelHint" | 35         <div class="subtitle" id="checkingForUpdateCancelHint" | 
| 36             i18n-content="cancelUpdateHint" hidden="[[!cancelAllowed]]"> | 36             hidden="[[!cancelAllowed]]"> | 
|  | 37           $i18n{cancelUpdateHint} | 
| 37         </div> | 38         </div> | 
| 38       </div> | 39       </div> | 
| 39       <div class="footer flex layout vertical"> | 40       <div class="footer flex layout vertical"> | 
| 40         <paper-progress id="checking-progress" indeterminate></paper-progress> | 41         <paper-progress id="checking-progress" indeterminate></paper-progress> | 
| 41       </div> | 42       </div> | 
| 42     </oobe-dialog> | 43     </oobe-dialog> | 
| 43     <oobe-dialog hidden="[[checkingForUpdate]]"> | 44     <oobe-dialog hidden="[[checkingForUpdate]]"> | 
| 44       <iron-icon icon="oobe-update:googleg" class="oobe-icon"></iron-icon> | 45       <iron-icon icon="oobe-update:googleg" class="oobe-icon"></iron-icon> | 
| 45       <div class="header"> | 46       <div class="header"> | 
| 46         <h1 class="title" i18n-content="updatingScreenTitle"></h1> | 47         <h1 class="title">$i18n{updatingScreenTitle}</h1> | 
| 47         <div class="subtitle" i18n-content="installingUpdateDesc"></div> | 48         <div class="subtitle">$i18n{installingUpdateDesc}</div> | 
| 48         <div class="subtitle" id="updatingCancelHint" | 49         <div class="subtitle" id="updatingCancelHint" | 
| 49             i18n-content="cancelUpdateHint" hidden="[[!cancelAllowed]]"> | 50             hidden="[[!cancelAllowed]]"> | 
|  | 51           $i18n{cancelUpdateHint} | 
| 50         </div> | 52         </div> | 
| 51       </div> | 53       </div> | 
| 52       <div class="footer flex layout vertical"> | 54       <div class="footer flex layout vertical"> | 
| 53         <div id="update-upper-label">[[updateUpperLabel]]</div> | 55         <div id="update-upper-label">[[updateUpperLabel]]</div> | 
| 54         <paper-progress min="0" max="100" value="[[progressValue]]"> | 56         <paper-progress min="0" max="100" value="[[progressValue]]"> | 
| 55         </paper-progress> | 57         </paper-progress> | 
| 56         <div id="estimated-time-left" class="progress-message" | 58         <div id="estimated-time-left" class="progress-message" | 
| 57             hidden="[[!estimatedTimeLeftShown]]">[[estimatedTimeLeft]]</div> | 59             hidden="[[!estimatedTimeLeftShown]]">[[estimatedTimeLeft]]</div> | 
| 58         <div id="progress-message" class="progress-message" | 60         <div id="progress-message" class="progress-message" | 
| 59             hidden="[[!progressMessageShown]]">[[progressMessage]]</div> | 61             hidden="[[!progressMessageShown]]">[[progressMessage]]</div> | 
| 60       </div> | 62       </div> | 
| 61     </oobe-dialog> | 63     </oobe-dialog> | 
| 62   </template> | 64   </template> | 
| 63 </dom-module> | 65 </dom-module> | 
| OLD | NEW | 
|---|