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

Side by Side Diff: chrome/browser/resources/settings/people_page/sync_page.html

Issue 2689053002: MD Settings: label and describe a bunch of subpage/open-in-new buttons (Closed)
Patch Set: downloadSize -> downloadsSize Created 3 years, 10 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 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html">
10 <link rel="import" href="sync_browser_proxy.html"> 10 <link rel="import" href="sync_browser_proxy.html">
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 disabled="[[shouldPaymentsCheckboxBeDisabled_( 178 disabled="[[shouldPaymentsCheckboxBeDisabled_(
179 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]"> 179 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]">
180 </paper-toggle-button> 180 </paper-toggle-button>
181 </div> 181 </div>
182 </div> 182 </div>
183 183
184 <div class="settings-box two-line" actionable 184 <div class="settings-box two-line" actionable
185 on-tap="onManageSyncedDataTap_"> 185 on-tap="onManageSyncedDataTap_">
186 <div class="start"> 186 <div class="start">
187 $i18n{manageSyncedDataTitle} 187 $i18n{manageSyncedDataTitle}
188 <div class="secondary">$i18n{manageSyncedDataDescription}</div> 188 <div class="secondary" id="manageSyncedDataSecondary">
189 $i18n{manageSyncedDataDescription}
190 </div>
189 </div> 191 </div>
190 <button class="icon-external" is="paper-icon-button-light"></button> 192 <button class="icon-external" is="paper-icon-button-light"
193 aria-label="$i18n{manageSyncedDataTitle}"
194 aria-describedby="manageSyncedDataSecondary"></button>
191 </div> 195 </div>
192 196
193 <div class="settings-box two-line single-column"> 197 <div class="settings-box two-line single-column">
194 <div>$i18n{encryptionOptionsTitle}</div> 198 <div>$i18n{encryptionOptionsTitle}</div>
195 <div class="secondary">$i18n{syncDataEncryptedText}</div> 199 <div class="secondary">$i18n{syncDataEncryptedText}</div>
196 </div> 200 </div>
197 201
198 <div id="encryptionRadioGroupContainer" class="list-frame" 202 <div id="encryptionRadioGroupContainer" class="list-frame"
199 hidden="[[syncPrefs.passphraseRequired]]"> 203 hidden="[[syncPrefs.passphraseRequired]]">
200 <paper-radio-group 204 <paper-radio-group
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 </div> 283 </div>
280 <div id="passphraseRecoverHint" class="list-item"> 284 <div id="passphraseRecoverHint" class="list-item">
281 <span>$i18nRaw{passphraseRecover}</span> 285 <span>$i18nRaw{passphraseRecover}</span>
282 </div> 286 </div>
283 </div> 287 </div>
284 </template> 288 </template>
285 </div> 289 </div>
286 </template> 290 </template>
287 <script src="sync_page.js"></script> 291 <script src="sync_page.js"></script>
288 </dom-module> 292 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698