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

Unified 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 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 68f3d1bf8731f3be3e32891b9c17601b51b7e286..7291c94003a9e8b04c3f2ea07276c4601a8cb202 100644
--- a/chrome/browser/resources/chromeos/arc_support/main.html
+++ b/chrome/browser/resources/chromeos/arc_support/main.html
@@ -74,27 +74,33 @@
<div class="section-terms" id ="terms-container">
<webview id="terms-view" partition="persist:arc_support"></webview>
</div>
- <label class="layout horizontal section-checkbox-container">
- <input type="checkbox" class="checkbox-option" id="enable-metrics">
- <p class="checkbox-text" id="text-metrics"></p>
- </label>
- <label class="layout horizontal section-checkbox-container">
- <input type="checkbox" class="checkbox-option"
- id="enable-backup-restore">
- <p class="checkbox-text" id="text-backup-restore"></p>
- </label>
- <label class="layout horizontal section-checkbox-container">
- <input type="checkbox" class="checkbox-option"
- id="enable-location-service">
- <p class="checkbox-text" id="text-location-service"></p>
- </label>
+ <div id="metrics-preference">
+ <label class="layout horizontal section-checkbox-container">
+ <input type="checkbox" class="checkbox-option">
+ <p class="checkbox-text"></p>
+ </label>
+ </div>
+ <div id="backup-restore-preference">
+ <label class="layout horizontal section-checkbox-container">
+ <input type="checkbox" class="checkbox-option">
+ <p class="checkbox-text"
+ i18n-values=".innerHTML:textBackupRestore"></p>
+ </label>
+ </div>
+ <div id="location-service-preference">
+ <label class="layout horizontal section-checkbox-container">
+ <input type="checkbox" class="checkbox-option">
+ <p class="checkbox-text"
+ i18n-values=".innerHTML:textLocationService"></p>
+ </label>
+ </div>
<div class="layout horizontal end-justified section-buttons">
<paper-button class="white" id="button-cancel"
i18n-content="buttonCancel">
</paper-button>
<div class="button-separator"></div>
<paper-button class="blue" id="button-agree"
- i18n-content="buttonAgree">
+ i18n-content="buttonAgree">
</paper-button>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698