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

Unified Diff: chrome/browser/resources/chromeos/arc_support/main.html

Issue 2179803002: arc: Use location service consent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: discard unwanted change 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/arc_support/main.html
diff --git a/chrome/browser/resources/chromeos/arc_support/main.html b/chrome/browser/resources/chromeos/arc_support/main.html
index c9dd9b23c66d5f74e811846f113537a7b1d5f568..a176eebf8723e987dc3a12d8d23562c5b0c58343 100644
--- a/chrome/browser/resources/chromeos/arc_support/main.html
+++ b/chrome/browser/resources/chromeos/arc_support/main.html
@@ -62,17 +62,26 @@
<div class="section-terms" id ="terms-container">
<webview id="terms-view" partition="persist:arc_support"></webview>
</div>
- <div class="layout horizontal section-checkbox-container">
- <input type="checkbox" class="checkbox-option" id="enable-metrics"
- hidden>
+ <label class="layout horizontal section-checkbox-container">
+ <div class="checkbox-container" id="enable-metrics-container" hidden>
+ <input type="checkbox" class="checkbox-option" id="enable-metrics">
+ </div>
<p class="checkbox-text" id="text-metrics"></p>
- </div>
- <div id="section-backup-restore" class="layout horizontal
- section-checkbox-container">
- <input type="checkbox" class="checkbox-option"
- id="enable-backup-restore">
+ </label>
+ <label class="layout horizontal section-checkbox-container">
+ <div class="checkbox-container">
+ <input type="checkbox" class="checkbox-option"
+ id="enable-backup-restore">
+ </div>
<p class="checkbox-text" id="text-backup-restore"></p>
- </div>
+ </label>
+ <label class="layout horizontal section-checkbox-container">
+ <div class="checkbox-container">
+ <input type="checkbox" class="checkbox-option"
+ id="enable-location-service">
+ </div>
+ <p class="checkbox-text" id="text-location-service"></p>
+ </label>
<div class="layout horizontal end-justified section-buttons">
<paper-button class="white" id="button-cancel"
i18n-content="buttonCancel">

Powered by Google App Engine
This is Rietveld 408576698