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

Side by Side Diff: chrome/browser/resources/options/personal_options.html

Issue 3042005: Relanding: Personal stuff page in tabbed options (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Filter Created 10 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 unified diff | Download patch
OLDNEW
1 <div class="page hidden" id="personalPage"> 1 <div class="page hidden" id="personalPage">
2 <h1 i18n-content="personalPage"></h1> 2 <h1 i18n-content="personalPage"></h1>
3
4 <section>
5 <h3 i18n-content="sync_section"></h3>
6 <table class="option-control-table">
7 <tr id="text-when-not-synced">
8 <td>
9 <div class="section-text" id="sync_not_setup_info"
10 i18n-content="sync_not_setup_info"/>
11 </td>
12 </tr>
13 <tr id="button-when-not-synced">
14 <td>
15 <button id="start-sync" i18n-content="start_sync"></button>
16 </td>
17 </tr>
18 </div>
19 <div>
20 <tr id="text-when-synced">
21 <td>
22 <div class="section-text" id="synced_to_user_with_time"
23 i18n-content="synced_to_user_with_time"/>
24 </td>
25 </tr>
26 <tr id="button-when-synced">
27 <td>
28 <button id="stop-sync" i18n-content="stop_sync"></button>
29 <button id="sync-customize" i18n-content="sync_customize"></button>
30 </td>
31 </tr>
32 </div>
33 </table>
34 </section>
35 <section>
36 <h3 i18n-content="passwords"></h3>
37 <table class="option-control-table">
38 <tr>
39 <td class="option-name">
40 <label>
41 <input id="passwords_asktosave"
42 name="passwords_radio"
43 pref="profile.password_manager_enabled"
44 type="radio" value="true">
45 <span i18n-content="passwords_asktosave"></span>
46 </label>
47 </tr>
48 <tr>
49 <td class="option-name">
50 <label>
51 <input id="passwords_neversave"
52 name="passwords_radio"
53 pref="profile.password_manager_enabled"
54 type="radio" value="false">
55 <span i18n-content="passwords_neversave"></span>
56 </label>
57 </tr>
58 <tr>
59 <button id="showpasswords" i18n-content="showpasswords"></button>
60 </tr>
61 </table>
62 </section>
63 <section>
64 <h3 i18n-content="autofill"></h3>
65 <table class="option-control-table">
66 <tr>
67 <td class="option-name">
68 <label>
69 <input id="autofill_enable"
70 name="autofill_radio"
71 pref="autofill.enabled"
72 type="radio" value="true">
73 <span i18n-content="autofill_enable"></span>
74 </label>
75 </tr>
76 <tr>
77 <td class="option-name">
78 <label>
79 <input id="autofill_disable"
80 name="autofill_radio"
81 pref="autofill.enabled"
82 type="radio" value="false">
83 <span i18n-content="autofill_disable"></span>
84 </label>
85 </tr>
86 <tr>
87 <button id="autofill_options" i18n-content="autofill_options">
88 </button>
89 </tr>
90 </table>
91 </section>
92 <section>
93 <h3 i18n-content="browsing_data"></h3>
94 <table class="option-control-table">
95 <tr>
96 <button id="import_data" i18n-content="import_data"></button>
97 </tr>
98 </table>
99 </section>
100
101 <if expr="(os == 'linux2' or os.find('bsd') != -1) and not pp_ifdef('chromeos' )">
102 <section>
103 <h3 i18n-content="appearance"></h3>
104 <table class="option-control-table">
105 <tr>
106 <button id="themes_GTK_button" i18n-content="themes_GTK_button">
107 </button>
108 <button id="themes_set_classic" i18n-content="themes_set_classic">
109 </button>
110 <a id="linux_themes_gallery" i18n-content="themes_gallery"></a>
111 </tr>
112 <tr>
113 <td class="option-name">
114 <label>
115 <input name="decorations_radio"
116 pref="browser.custom_chrome_frame"
117 type="radio" value="false">
118 <span i18n-content="showWindow_decorations_radio"></span>
119 </label>
120 </tr>
121 <tr>
122 <td class="option-name">
123 <label>
124 <input name="decorations_radio"
125 pref="browser.custom_chrome_frame"
126 type="radio" value="true">
127 <span i18n-content="hideWindow_decorations_radio"></span>
128 </label>
129 </tr>
130 </table>
131 </section>
132 </if>
133 <if expr="pp_ifdef('chromeos') or os == 'win32' or os == 'darwin'">
134 <section>
135 <h3 i18n-content="themes"></h3>
136 <table class="option-control-table">
137 <tr>
138 <button id="themes_reset" i18n-content="themes_reset"></button>
139 <a id="nonlinux_themes_gallery" i18n-content="themes_gallery"></a>
140 </tr>
141 </table>
142 </section>
143 </if>
144
3 </div> 145 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/personal_options.css ('k') | chrome/browser/resources/options/personal_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698