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

Side by Side Diff: chrome/browser/resources/chromeos/arc_support/main.html

Issue 2104893003: Adds a new checkbox for backup and restore in opt-in flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adds a new checkbox for backup and restore in opt-in flow. Created 4 years, 5 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
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 <p class="text-desc" i18n-content="greetingDescription"></p> 48 <p class="text-desc" i18n-content="greetingDescription"></p>
49 <p class="text-terms-title" i18n-content="termsOfService"></p> 49 <p class="text-terms-title" i18n-content="termsOfService"></p>
50 <div class="section-terms" id ="terms-container"> 50 <div class="section-terms" id ="terms-container">
51 <webview id="terms" partition="persist:arc_support"></webview> 51 <webview id="terms" partition="persist:arc_support"></webview>
52 </div> 52 </div>
53 <div class="layout horizontal section-metrics"> 53 <div class="layout horizontal section-metrics">
54 <input type="checkbox" class="checkbox-metrics" id="enable-metrics" 54 <input type="checkbox" class="checkbox-metrics" id="enable-metrics"
55 hidden> 55 hidden>
56 <p class="text-metrics" id="text-metrics"></p> 56 <p class="text-metrics" id="text-metrics"></p>
57 </div> 57 </div>
58 <div id="section-backup-restore" class="layout horizontal
59 section-backup-restore">
60 <input type="checkbox" class="checkbox-backup-restore"
61 id="enable-backup-restore" hidden>
62 <p class="text-backup-restore" id="text-backup-restore"></p>
63 </div>
58 <div class="layout horizontal end-justified section-buttons"> 64 <div class="layout horizontal end-justified section-buttons">
59 <paper-button class="white" id="button-cancel" 65 <paper-button class="white" id="button-cancel"
60 i18n-content="buttonCancel"> 66 i18n-content="buttonCancel">
61 </paper-button> 67 </paper-button>
62 <div class="button-separator"></div> 68 <div class="button-separator"></div>
63 <paper-button class="blue" id="button-agree" i18n-content="buttonAgree" 69 <paper-button class="blue" id="button-agree" i18n-content="buttonAgree"
64 disabled> 70 disabled>
65 </paper-button> 71 </paper-button>
66 </div> 72 </div>
67 </div> 73 </div>
(...skipping 16 matching lines...) Expand all
84 <paper-progress class="red" value="100" max="100" ></paper-progress> 90 <paper-progress class="red" value="100" max="100" ></paper-progress>
85 <p class="text-status" id="error-message"></p> 91 <p class="text-status" id="error-message"></p>
86 <paper-button class="blue" id="button-send-feedback" 92 <paper-button class="blue" id="button-send-feedback"
87 i18n-content="buttonSendFeedback"> 93 i18n-content="buttonSendFeedback">
88 </paper-button> 94 </paper-button>
89 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> 95 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry">
90 </paper-button> 96 </paper-button>
91 </div> 97 </div>
92 </body> 98 </body>
93 </html> 99 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698