| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> | 4 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-
progress.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-
progress.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas
ses/iron-flex-layout.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas
ses/iron-flex-layout.html"> |
| 8 <style is="custom-style"> | 8 <style is="custom-style"> |
| 9 paper-progress { | 9 paper-progress { |
| 10 display: block; | 10 display: block; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 <div id="terms" class="section" hidden> | 55 <div id="terms" class="section" hidden> |
| 56 <img class="image-header" src="images/header.png"> | 56 <img class="image-header" src="images/header.png"> |
| 57 <div class="scrollable" > | 57 <div class="scrollable" > |
| 58 <div class="content section-flex"> | 58 <div class="content section-flex"> |
| 59 <p class="text-title" i18n-content="greetingHeader"></p> | 59 <p class="text-title" i18n-content="greetingHeader"></p> |
| 60 <p class="text-desc" i18n-content="greetingDescription"></p> | 60 <p class="text-desc" i18n-content="greetingDescription"></p> |
| 61 <p class="text-terms-title" i18n-content="termsOfService"></p> | 61 <p class="text-terms-title" i18n-content="termsOfService"></p> |
| 62 <div class="section-terms" id ="terms-container"> | 62 <div class="section-terms" id ="terms-container"> |
| 63 <webview id="terms-view" partition="persist:arc_support"></webview> | 63 <webview id="terms-view" partition="persist:arc_support"></webview> |
| 64 </div> | 64 </div> |
| 65 <div class="layout horizontal section-checkbox-container"> | 65 <label class="layout horizontal section-checkbox-container"> |
| 66 <input type="checkbox" class="checkbox-option" id="enable-metrics" | 66 <div class="checkbox-container" id="enable-metrics-container" hidden> |
| 67 hidden> | 67 <input type="checkbox" class="checkbox-option" id="enable-metrics"> |
| 68 </div> |
| 68 <p class="checkbox-text" id="text-metrics"></p> | 69 <p class="checkbox-text" id="text-metrics"></p> |
| 69 </div> | 70 </label> |
| 70 <div id="section-backup-restore" class="layout horizontal | 71 <label class="layout horizontal section-checkbox-container"> |
| 71 section-checkbox-container"> | 72 <div class="checkbox-container"> |
| 72 <input type="checkbox" class="checkbox-option" | 73 <input type="checkbox" class="checkbox-option" |
| 73 id="enable-backup-restore"> | 74 id="enable-backup-restore"> |
| 75 </div> |
| 74 <p class="checkbox-text" id="text-backup-restore"></p> | 76 <p class="checkbox-text" id="text-backup-restore"></p> |
| 75 </div> | 77 </label> |
| 78 <label class="layout horizontal section-checkbox-container"> |
| 79 <div class="checkbox-container"> |
| 80 <input type="checkbox" class="checkbox-option" |
| 81 id="enable-location-service"> |
| 82 </div> |
| 83 <p class="checkbox-text" id="text-location-service"></p> |
| 84 </label> |
| 76 <div class="layout horizontal end-justified section-buttons"> | 85 <div class="layout horizontal end-justified section-buttons"> |
| 77 <paper-button class="white" id="button-cancel" | 86 <paper-button class="white" id="button-cancel" |
| 78 i18n-content="buttonCancel"> | 87 i18n-content="buttonCancel"> |
| 79 </paper-button> | 88 </paper-button> |
| 80 <div class="button-separator"></div> | 89 <div class="button-separator"></div> |
| 81 <paper-button class="blue" id="button-agree" | 90 <paper-button class="blue" id="button-agree" |
| 82 i18n-content="buttonAgree"> | 91 i18n-content="buttonAgree"> |
| 83 </paper-button> | 92 </paper-button> |
| 84 </div> | 93 </div> |
| 85 </div> | 94 </div> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 116 <paper-button class="blue" id="button-send-feedback" | 125 <paper-button class="blue" id="button-send-feedback" |
| 117 i18n-content="buttonSendFeedback"> | 126 i18n-content="buttonSendFeedback"> |
| 118 </paper-button> | 127 </paper-button> |
| 119 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> | 128 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> |
| 120 </paper-button> | 129 </paper-button> |
| 121 </div> | 130 </div> |
| 122 </div> | 131 </div> |
| 123 </div> | 132 </div> |
| 124 </body> | 133 </body> |
| 125 </html> | 134 </html> |
| OLD | NEW |