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

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

Issue 2408063007: Re-sort preference update protocol between Chrome and ArcSupport. (Closed)
Patch Set: Rebase Created 4 years, 2 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="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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <img class="image-header" src="images/header.png"> 67 <img class="image-header" src="images/header.png">
68 <div class="scrollable" > 68 <div class="scrollable" >
69 <div class="content section-flex"> 69 <div class="content section-flex">
70 <p class="text-title" i18n-content="greetingHeader"></p> 70 <p class="text-title" i18n-content="greetingHeader"></p>
71 <p class="text-desc" i18n-content="greetingDescription"></p> 71 <p class="text-desc" i18n-content="greetingDescription"></p>
72 <p class="text-terms-title" id="terms-title" 72 <p class="text-terms-title" id="terms-title"
73 i18n-content="termsOfService"></p> 73 i18n-content="termsOfService"></p>
74 <div class="section-terms" id ="terms-container"> 74 <div class="section-terms" id ="terms-container">
75 <webview id="terms-view" partition="persist:arc_support"></webview> 75 <webview id="terms-view" partition="persist:arc_support"></webview>
76 </div> 76 </div>
77 <label class="layout horizontal section-checkbox-container"> 77 <div id="metrics-preference">
78 <input type="checkbox" class="checkbox-option" id="enable-metrics"> 78 <label class="layout horizontal section-checkbox-container">
79 <p class="checkbox-text" id="text-metrics"></p> 79 <input type="checkbox" class="checkbox-option">
80 </label> 80 <p class="checkbox-text"></p>
81 <label class="layout horizontal section-checkbox-container"> 81 </label>
82 <input type="checkbox" class="checkbox-option" 82 </div>
83 id="enable-backup-restore"> 83 <div id="backup-restore-preference">
84 <p class="checkbox-text" id="text-backup-restore"></p> 84 <label class="layout horizontal section-checkbox-container">
85 </label> 85 <input type="checkbox" class="checkbox-option">
86 <label class="layout horizontal section-checkbox-container"> 86 <p class="checkbox-text"
87 <input type="checkbox" class="checkbox-option" 87 i18n-values=".innerHTML:textBackupRestore"></p>
88 id="enable-location-service"> 88 </label>
89 <p class="checkbox-text" id="text-location-service"></p> 89 </div>
90 </label> 90 <div id="location-service-preference">
91 <label class="layout horizontal section-checkbox-container">
92 <input type="checkbox" class="checkbox-option">
93 <p class="checkbox-text"
94 i18n-values=".innerHTML:textLocationService"></p>
95 </label>
96 </div>
91 <div class="layout horizontal end-justified section-buttons"> 97 <div class="layout horizontal end-justified section-buttons">
92 <paper-button class="white" id="button-cancel" 98 <paper-button class="white" id="button-cancel"
93 i18n-content="buttonCancel"> 99 i18n-content="buttonCancel">
94 </paper-button> 100 </paper-button>
95 <div class="button-separator"></div> 101 <div class="button-separator"></div>
96 <paper-button class="blue" id="button-agree" 102 <paper-button class="blue" id="button-agree"
97 i18n-content="buttonAgree"> 103 i18n-content="buttonAgree">
98 </paper-button> 104 </paper-button>
99 </div> 105 </div>
100 </div> 106 </div>
101 </div> 107 </div>
102 </div> 108 </div>
103 <div id="lso-loading" class="section" hidden> 109 <div id="lso-loading" class="section" hidden>
104 <img class="image-header" src="images/header.png"> 110 <img class="image-header" src="images/header.png">
105 <div class="scrollable"> 111 <div class="scrollable">
106 <div class="content"> 112 <div class="content">
107 <paper-progress class="blue" indeterminate></paper-progress> 113 <paper-progress class="blue" indeterminate></paper-progress>
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 <div class="button-strip"> 155 <div class="button-strip">
150 <button id="learn-more-close" i18n-content="learnMoreClose"> 156 <button id="learn-more-close" i18n-content="learnMoreClose">
151 </button> 157 </button>
152 </div> 158 </div>
153 </div> 159 </div>
154 </div> 160 </div>
155 </div> 161 </div>
156 </div> 162 </div>
157 </body> 163 </body>
158 </html> 164 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698