OLD | NEW |
---|---|
(Empty) | |
1 <link rel="import" href="chrome://resources/polymer/v0_8/polymer/polymer.html"> | |
2 <link rel="import" href="chrome://resources/polymer/v0_8/paper-material/paper-ma terial.html"> | |
3 <link rel="import" href="chrome://resources/polymer/v0_8/paper-radio-button/pape r-radio-button.html"> | |
4 <link rel="import" href="chrome://resources/polymer/v0_8/paper-radio-group/paper -radio-group.html"> | |
5 <link rel="import" href="chrome://resources/cr_elements/v0_8/cr_button/cr_button .html"> | |
6 <link rel="import" href="chrome://resources/cr_elements/v0_8/cr_checkbox/cr_chec kbox.html"> | |
7 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html"> | |
8 | |
9 <dom-module id="cr-settings-sync-page"> | |
10 <link rel="import" type="css" | |
11 href="chrome://md-settings/settings_page/settings_page.css"> | |
12 <link rel="import" type="css" href="sync_page.css"> | |
13 <template> | |
14 <paper-material> | |
15 <div i18n-content="syncPageTitle"></div> | |
16 <select id="autoclickDropdown"> | |
James Hawkins
2015/06/04 19:38:37
Remind me again: does this have to be javaScriptCa
Kyle Horimoto
2015/06/04 21:18:18
Using javaScriptCase allows us to reference the el
| |
17 <option value="sync-everything" | |
18 i18n-content="syncEverythingMenuOption"> | |
19 </option> | |
20 <option value="choose-what-to-sync" | |
21 i18n-content="chooseWhatToSyncMenuOption"> | |
22 </option> | |
23 </select> | |
24 <table> | |
James Hawkins
2015/06/04 19:38:37
This isn't tabular data, so don't use a table.
Kyle Horimoto
2015/06/04 21:18:18
Done.
| |
25 <tr> | |
26 <td> | |
27 <cr-checkbox> | |
28 <span i18n-content="appCheckboxLabel"></span> | |
29 </cr-checkbox> | |
30 </td> | |
31 <td> | |
32 <cr-checkbox> | |
33 <span i18n-content="extensionsCheckboxLabel"></span> | |
34 </cr-checkbox> | |
35 </td> | |
36 <td> | |
37 <cr-checkbox> | |
38 <span i18n-content="settingsCheckboxLabel"></span> | |
39 </cr-checkbox> | |
40 </td> | |
41 </tr> | |
42 <tr> | |
43 <td> | |
44 <cr-checkbox> | |
45 <span i18n-content="autofillCheckboxLabel"></span> | |
46 </cr-checkbox> | |
47 </td> | |
48 <td> | |
49 <cr-checkbox> | |
50 <span i18n-content="historyCheckboxLabel"></span> | |
51 </cr-checkbox> | |
52 </td> | |
53 <td> | |
54 <cr-checkbox> | |
55 <span i18n-content="themesAndWallpapersCheckboxLabel"></span> | |
56 </cr-checkbox> | |
57 </td> | |
58 </tr> | |
59 <tr> | |
60 <td> | |
61 <cr-checkbox> | |
62 <span i18n-content="bookmarksCheckboxLabel"></span> | |
63 </cr-checkbox> | |
64 </td> | |
65 <td> | |
66 <cr-checkbox> | |
67 <span i18n-content="passwordsCheckboxLabel"></span> | |
68 </cr-checkbox> | |
69 </td> | |
70 <td> | |
71 <cr-checkbox> | |
72 <span i18n-content="openTabsCheckboxLabel"></span> | |
73 </cr-checkbox> | |
74 </td> | |
75 </tr> | |
76 </table> | |
77 </paper-material> | |
78 <paper-material> | |
79 <div i18n-content="encryptionOptionsTitle"></div> | |
80 <div i18n-content="syncDataEncryptedText"></div> | |
81 <paper-radio-group selected="encrypt-with-google"> | |
82 <paper-radio-button name="encrypt-with-google" | |
83 i18n-content="encryptWithGoogleCredentialsLabel"> | |
84 </paper-radio-button> | |
85 <paper-radio-button name="encrypt-with-passphrase" | |
86 i18n-content="encryptWithSyncPassphraseLabel"> | |
87 </paper-radio-button> | |
88 </paper-radio-group> | |
89 <div> | |
90 <cr-button i18n-content="useDefaultSettingsButton"></cr-button> | |
91 <cr-button i18n-content="cancelButton"></cr-button> | |
92 <cr-button i18n-content="okButton"></cr-button> | |
93 </div> | |
94 </paper-material> | |
95 </template> | |
96 <script src="sync_page.js"></script> | |
97 </dom-module> | |
OLD | NEW |