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

Unified Diff: chrome/browser/resources/settings/sync_page/sync_page.html

Issue 1241363002: Settings Rewrite: Make a common settings-section component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0300-webui-settings-structure
Patch Set: Created 5 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/settings/sync_page/sync_page.html
diff --git a/chrome/browser/resources/settings/sync_page/sync_page.html b/chrome/browser/resources/settings/sync_page/sync_page.html
index f8743318019a841730971b92b0990a9ff8392900..cf8434e26f6af1be82c7e8a7e49b8835d00b1e13 100644
--- a/chrome/browser/resources/settings/sync_page/sync_page.html
+++ b/chrome/browser/resources/settings/sync_page/sync_page.html
@@ -11,69 +11,65 @@
href="chrome://md-settings/settings_page/settings_page.css">
<link rel="import" type="css" href="sync_page.css">
<template>
- <paper-material>
- <div i18n-content="syncPageTitle"></div>
- <select>
- <option value="sync-everything"
- i18n-content="syncEverythingMenuOption">
- </option>
- <option value="choose-what-to-sync"
- i18n-content="chooseWhatToSyncMenuOption">
- </option>
- </select>
- <div class="checkbox-container">
- <div class="checkbox-container-row">
- <cr-checkbox>
- <span i18n-content="appCheckboxLabel"></span>
- </cr-checkbox>
- <cr-checkbox>
- <span i18n-content="extensionsCheckboxLabel"></span>
- </cr-checkbox>
- <cr-checkbox>
- <span i18n-content="settingsCheckboxLabel"></span>
- </cr-checkbox>
- </div>
- <div class="checkbox-container-row">
- <cr-checkbox>
- <span i18n-content="autofillCheckboxLabel"></span>
- </cr-checkbox>
- <cr-checkbox>
- <span i18n-content="historyCheckboxLabel"></span>
- </cr-checkbox>
- <cr-checkbox>
- <span i18n-content="themesAndWallpapersCheckboxLabel"></span>
- </cr-checkbox>
- </div>
- <div class="checkbox-container-row">
- <cr-checkbox>
- <span i18n-content="bookmarksCheckboxLabel"></span>
- </cr-checkbox>
- <cr-checkbox>
- <span i18n-content="passwordsCheckboxLabel"></span>
- </cr-checkbox>
- <cr-checkbox>
- <span i18n-content="openTabsCheckboxLabel"></span>
- </cr-checkbox>
- </div>
+ <div i18n-content="syncPageTitle"></div>
+ <select>
+ <option value="sync-everything"
+ i18n-content="syncEverythingMenuOption">
+ </option>
+ <option value="choose-what-to-sync"
+ i18n-content="chooseWhatToSyncMenuOption">
+ </option>
+ </select>
+ <div class="checkbox-container">
+ <div class="checkbox-container-row">
+ <cr-checkbox>
+ <span i18n-content="appCheckboxLabel"></span>
+ </cr-checkbox>
+ <cr-checkbox>
+ <span i18n-content="extensionsCheckboxLabel"></span>
+ </cr-checkbox>
+ <cr-checkbox>
+ <span i18n-content="settingsCheckboxLabel"></span>
+ </cr-checkbox>
</div>
- </paper-material>
- <paper-material>
- <div i18n-content="encryptionOptionsTitle"></div>
- <div i18n-content="syncDataEncryptedText"></div>
- <paper-radio-group selected="encrypt-with-google">
- <paper-radio-button name="encrypt-with-google"
- i18n-content="encryptWithGoogleCredentialsLabel">
- </paper-radio-button>
- <paper-radio-button name="encrypt-with-passphrase"
- i18n-content="encryptWithSyncPassphraseLabel">
- </paper-radio-button>
- </paper-radio-group>
- <div>
- <cr-button i18n-content="useDefaultSettingsButton"></cr-button>
- <cr-button i18n-content="cancelButton"></cr-button>
- <cr-button i18n-content="okButton"></cr-button>
+ <div class="checkbox-container-row">
+ <cr-checkbox>
+ <span i18n-content="autofillCheckboxLabel"></span>
+ </cr-checkbox>
+ <cr-checkbox>
+ <span i18n-content="historyCheckboxLabel"></span>
+ </cr-checkbox>
+ <cr-checkbox>
+ <span i18n-content="themesAndWallpapersCheckboxLabel"></span>
+ </cr-checkbox>
</div>
- </paper-material>
+ <div class="checkbox-container-row">
+ <cr-checkbox>
+ <span i18n-content="bookmarksCheckboxLabel"></span>
+ </cr-checkbox>
+ <cr-checkbox>
+ <span i18n-content="passwordsCheckboxLabel"></span>
+ </cr-checkbox>
+ <cr-checkbox>
+ <span i18n-content="openTabsCheckboxLabel"></span>
+ </cr-checkbox>
+ </div>
+ </div>
+ <div i18n-content="encryptionOptionsTitle"></div>
+ <div i18n-content="syncDataEncryptedText"></div>
+ <paper-radio-group selected="encrypt-with-google">
+ <paper-radio-button name="encrypt-with-google"
+ i18n-content="encryptWithGoogleCredentialsLabel">
+ </paper-radio-button>
+ <paper-radio-button name="encrypt-with-passphrase"
+ i18n-content="encryptWithSyncPassphraseLabel">
+ </paper-radio-button>
+ </paper-radio-group>
+ <div>
+ <cr-button i18n-content="useDefaultSettingsButton"></cr-button>
+ <cr-button i18n-content="cancelButton"></cr-button>
+ <cr-button i18n-content="okButton"></cr-button>
+ </div>
</template>
<script src="sync_page.js"></script>
</dom-module>
« no previous file with comments | « chrome/browser/resources/settings/settings_resources.grd ('k') | chrome/browser/resources/settings/sync_page/sync_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698