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

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

Issue 2434823002: arc: Add Goolge Privacy Policy link to OptIn UI. (Closed)
Patch Set: comments updated, make presubmit passed 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 i18n-values=".innerHTML:textBackupRestore"></p> 87 i18n-values=".innerHTML:textBackupRestore"></p>
88 </label> 88 </label>
89 </div> 89 </div>
90 <div id="location-service-preference"> 90 <div id="location-service-preference">
91 <label class="layout horizontal section-checkbox-container"> 91 <label class="layout horizontal section-checkbox-container">
92 <input type="checkbox" class="checkbox-option"> 92 <input type="checkbox" class="checkbox-option">
93 <p class="checkbox-text" 93 <p class="checkbox-text"
94 i18n-values=".innerHTML:textLocationService"></p> 94 i18n-values=".innerHTML:textLocationService"></p>
95 </label> 95 </label>
96 </div> 96 </div>
97 <div class="layout horizontal end-justified section-buttons"> 97 <div class="layout horizontal center end-justified section-buttons">
98 <a class="checkbox-text" id="privacy-policy-link"
99 href="#" i18n-content="privacyPolicyLink"></a>
100 <div class="flex"></div>
98 <paper-button class="white" id="button-cancel" 101 <paper-button class="white" id="button-cancel"
99 i18n-content="buttonCancel"> 102 i18n-content="buttonCancel">
100 </paper-button> 103 </paper-button>
101 <div class="button-separator"></div> 104 <div class="button-separator"></div>
102 <paper-button class="blue" id="button-agree" 105 <paper-button class="blue" id="button-agree"
103 i18n-content="buttonAgree"> 106 i18n-content="buttonAgree">
104 </paper-button> 107 </paper-button>
105 </div> 108 </div>
106 </div> 109 </div>
107 </div> 110 </div>
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 <div class="button-strip"> 159 <div class="button-strip">
157 <button id="overlay-close" i18n-content="overlayClose"> 160 <button id="overlay-close" i18n-content="overlayClose">
158 </button> 161 </button>
159 </div> 162 </div>
160 </div> 163 </div>
161 </div> 164 </div>
162 </div> 165 </div>
163 </div> 166 </div>
164 </body> 167 </body>
165 </html> 168 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698