summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/settings/sync_page/sync_page.html
blob: f8743318019a841730971b92b0990a9ff8392900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-material.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/paper-radio-button.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper-radio-group.html">
<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button.html">
<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_checkbox/cr_checkbox.html">
<link rel="import" href="chrome://md-settings/checkbox/checkbox.html">

<dom-module id="cr-settings-sync-page">
  <link rel="import" type="css"
      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>
    </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>
    </paper-material>
  </template>
  <script src="sync_page.js"></script>
</dom-module>