| 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="stylesheet" href="chrome://resources/css/bubble.css"> | 5 <link rel="stylesheet" href="chrome://resources/css/bubble.css"> |
| 6 <link rel="stylesheet" href="chrome://resources/css/bubble_button.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/bubble_button.css"> |
| 7 <link rel="stylesheet" href="chrome://resources/css/controlled_indicator.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/controlled_indicator.css"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-
progress.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-
progress.html"> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 <label class="layout horizontal section-checkbox-container"> | 81 <label class="layout horizontal section-checkbox-container"> |
| 82 <input type="checkbox" class="checkbox-option" | 82 <input type="checkbox" class="checkbox-option" |
| 83 id="enable-backup-restore"> | 83 id="enable-backup-restore"> |
| 84 <p class="checkbox-text" id="text-backup-restore"></p> | 84 <p class="checkbox-text" id="text-backup-restore"></p> |
| 85 </label> | 85 </label> |
| 86 <label class="layout horizontal section-checkbox-container"> | 86 <label class="layout horizontal section-checkbox-container"> |
| 87 <input type="checkbox" class="checkbox-option" | 87 <input type="checkbox" class="checkbox-option" |
| 88 id="enable-location-service"> | 88 id="enable-location-service"> |
| 89 <p class="checkbox-text" id="text-location-service"></p> | 89 <p class="checkbox-text" id="text-location-service"></p> |
| 90 </label> | 90 </label> |
| 91 <div class="layout horizontal end-justified section-buttons"> | 91 <div class="layout horizontal center end-justified section-buttons"> |
| 92 <a class="checkbox-text" id="privacy-policy-link" |
| 93 href="#" i18n-content="privacyPolicyLink"></a> |
| 94 <div class="flex"></div> |
| 92 <paper-button class="white" id="button-cancel" | 95 <paper-button class="white" id="button-cancel" |
| 93 i18n-content="buttonCancel"> | 96 i18n-content="buttonCancel"> |
| 94 </paper-button> | 97 </paper-button> |
| 95 <div class="button-separator"></div> | 98 <div class="button-separator"></div> |
| 96 <paper-button class="blue" id="button-agree" | 99 <paper-button class="blue" id="button-agree" |
| 97 i18n-content="buttonAgree"> | 100 i18n-content="buttonAgree"> |
| 98 </paper-button> | 101 </paper-button> |
| 99 </div> | 102 </div> |
| 100 </div> | 103 </div> |
| 101 </div> | 104 </div> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 <div class="button-strip"> | 153 <div class="button-strip"> |
| 151 <button id="overlay-close" i18n-content="overlayClose"> | 154 <button id="overlay-close" i18n-content="overlayClose"> |
| 152 </button> | 155 </button> |
| 153 </div> | 156 </div> |
| 154 </div> | 157 </div> |
| 155 </div> | 158 </div> |
| 156 </div> | 159 </div> |
| 157 </div> | 160 </div> |
| 158 </body> | 161 </body> |
| 159 </html> | 162 </html> |
| OLD | NEW |