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

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

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id="personal-page" class="page" hidden>
2 <h1 i18n-content="personalPage"></h1>
3 <div class="displaytable">
4 <if expr="pp_ifdef('chromeos')">
5 <section>
6 <h3 i18n-content="account"></h3>
7 <div>
8 <span id="account-picture-wrapper">
9 <img id="account-picture"
10 src="chrome://theme/IDR_PROFILE_PICTURE_LOADING">
11 </span>
12 <label>
13 <input id="enable-screen-lock" type="checkbox"
14 pref="settings.enable_screen_lock">
15 <span i18n-content="enableScreenlock"></span>
16 </label>
17 <br>
18 <button id="change-picture-button" i18n-content="changePicture">
19 </button>
20 </div>
21 </section>
22 </if>
23 <section id="sync-section">
24 <h3 i18n-content="syncSection"></h3>
25 <div>
26 <div id="sync-overview" hidden>
27 <span i18n-content="syncOverview"></span>
28 <a i18n-values="href:syncLearnMoreURL" i18n-content="learnMore"></a>
29 </div>
30 <div id="sync-status" hidden>
31 <span id="sync-status-text"></span>
32 <button id="sync-action-link" class="link-button"></button>
33 </div>
34 <div id="sync-buttons">
35 <button id="start-stop-sync" hidden></button>
36 <button id="customize-sync" i18n-content="customizeSync" hidden>
37 </button>
38 <div id="enable-auto-login-checkbox" class="checkbox" hidden>
39 <label>
40 <input id="enable-auto-login" pref="autologin.enabled"
41 metric="Options_Autologin" type="checkbox">
42 <span i18n-content="autologinEnabled"></span>
43 </label>
44 </div>
45 </div>
46 </div>
47 </section>
48 <section id="profiles-section" hidden>
49 <h3 i18n-content="profiles"></h3>
50 <div>
51 <list id="profiles-list" class="settings-list" hidden></list>
52 <div id="profiles-single-message" i18n-content="profilesSingleUser">
53 </div>
54 <div id="profiles-buttons">
55 <button id="profiles-create" i18n-content="profilesCreate"></button>
56 <button id="profiles-manage" i18n-content="profilesManage" disabled>
57 </button>
58 <button id="profiles-delete" i18n-content="profilesDelete">
59 </button>
60 </div>
61 </div>
62 </section>
63 <section>
64 <h3 i18n-content="passwords"></h3>
65 <div>
66 <div class="radio">
67 <label>
68 <input id="passwords-offersave" type="radio" name="passwords_radio"
69 value="true" pref="profile.password_manager_enabled"
70 metric="Options_PasswordManager">
71 <span i18n-content="passwordsAskToSave"></span>
72 </label>
73 </div>
74 <div class="radio">
75 <label>
76 <input id="passwords-neversave" type="radio" name="passwords_radio"
77 value="false" pref="profile.password_manager_enabled"
78 metric="Options_PasswordManager">
79 <span i18n-content="passwordsNeverSave"></span>
80 </label>
81 </div>
82 <div><button id="manage-passwords" i18n-content="manage_passwords"
83 pref="profile.password_manager_enabled"></button></div>
84 <if expr="is_macosx">
85 <div id="mac-passwords-warning" i18n-content="macPasswordsWarning"
86 hidden>
87 </div>
88 </if>
89 <!-- This makes the managed-banner appear when the "pref" is
90 configured by the IT administrator. -->
91 <input name="password_allow_show_hidden" type="text"
92 pref="profile.password_manager_allow_show_passwords" hidden>
93 </div>
94 </section>
95 <section id="autofill-section">
96 <h3 i18n-content="autofill"></h3>
97 <div>
98 <div class="checkbox">
99 <label>
100 <input id="autofill-enabled" pref="autofill.enabled"
101 metric="Options_FormAutofill" type="checkbox">
102 <span i18n-content="autofillEnabled"></span>
103 </label>
104 </div>
105 <button id="autofill-settings" pref="autofill.enabled"
106 i18n-content="manageAutofillSettings"></button>
107 </div>
108 </section>
109 <if expr="not pp_ifdef('chromeos')">
110 <section>
111 <h3 i18n-content="browsingData"></h3>
112 <div>
113 <button id="import-data" i18n-content="importData"></button>
114 </div>
115 </section>
116 </if>
117 <if expr="not pp_ifdef('toolkit_views') and is_posix and not is_macosx">
118 <section>
119 <h3 i18n-content="appearance"></h3>
120 <div>
121 <div>
122 <button id="themes-GTK-button"
123 i18n-content="themesGTKButton"></button>
124 <button id="themes-reset"
125 i18n-content="themesSetClassic"></button>
126 </div>
127 <div id="themes-gallery-div">
128 <a id="themes-gallery" i18n-content="themesGallery"
129 i18n-values="href:themesGalleryURL" target="_blank"></a>
130 </div>
131 <div class="radio">
132 <label>
133 <input name="decorations_radio"
134 pref="browser.custom_chrome_frame"
135 type="radio" value="false" metric="Options_CustomFrame">
136 <span i18n-content="showWindowDecorations"></span>
137 </label>
138 </div>
139 <div class="radio">
140 <label>
141 <input name="decorations_radio"
142 pref="browser.custom_chrome_frame"
143 type="radio" value="true" metric="Options_CustomFrame">
144 <span i18n-content="hideWindowDecorations"></span>
145 </label>
146 </div>
147 </div>
148 </section>
149 </if>
150 <if expr="pp_ifdef('toolkit_views') or os == 'win32' or os == 'darwin'">
151 <section>
152 <h3 i18n-content="themes"></h3>
153 <div>
154 <div>
155 <button id="themes-reset" i18n-content="themesReset"></button>
156 </div>
157 <div id="themes-gallery-div">
158 <a id="themes-gallery" i18n-content="themesGallery"
159 i18n-values="href:themesGalleryURL" target="_blank"></a>
160 </div>
161 </div>
162 </section>
163 </if>
164 </div>
165 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698