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

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

Issue 8930012: Revert 114236 - Options2: Pull the trigger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 <div id="mac-passwords-warning" i18n-content="macPasswordsWarning"
85 hidden></div>
86 <!-- This makes the managed-banner appear when the "pref" is
87 configured by the IT administrator. -->
88 <input name="password_allow_show_hidden" type="text"
89 pref="profile.password_manager_allow_show_passwords" hidden>
90 </div>
91 </section>
92 <section id="autofill-section">
93 <h3 i18n-content="autofill"></h3>
94 <div>
95 <div class="checkbox">
96 <label>
97 <input id="autofill-enabled" pref="autofill.enabled"
98 metric="Options_FormAutofill" type="checkbox">
99 <span i18n-content="autofillEnabled"></span>
100 </label>
101 </div>
102 <button id="autofill-settings" pref="autofill.enabled"
103 i18n-content="manageAutofillSettings"></button>
104 </div>
105 </section>
106 <if expr="not pp_ifdef('chromeos')">
107 <section>
108 <h3 i18n-content="browsingData"></h3>
109 <div>
110 <button id="import-data" i18n-content="importData"></button>
111 </div>
112 </section>
113 </if>
114 <if expr="not pp_ifdef('toolkit_views') and is_posix and not is_macosx">
115 <section>
116 <h3 i18n-content="appearance"></h3>
117 <div>
118 <div>
119 <button id="themes-GTK-button"
120 i18n-content="themesGTKButton"></button>
121 <button id="themes-reset"
122 i18n-content="themesSetClassic"></button>
123 </div>
124 <div id="themes-gallery-div">
125 <a id="themes-gallery" i18n-content="themesGallery"
126 i18n-values="href:themesGalleryURL" target="_blank"></a>
127 </div>
128 <div class="radio">
129 <label>
130 <input name="decorations_radio"
131 pref="browser.custom_chrome_frame"
132 type="radio" value="false" metric="Options_CustomFrame">
133 <span i18n-content="showWindowDecorations"></span>
134 </label>
135 </div>
136 <div class="radio">
137 <label>
138 <input name="decorations_radio"
139 pref="browser.custom_chrome_frame"
140 type="radio" value="true" metric="Options_CustomFrame">
141 <span i18n-content="hideWindowDecorations"></span>
142 </label>
143 </div>
144 </div>
145 </section>
146 </if>
147 <if expr="pp_ifdef('toolkit_views') or os == 'win32' or os == 'darwin'">
148 <section>
149 <h3 i18n-content="themes"></h3>
150 <div>
151 <div>
152 <button id="themes-reset" i18n-content="themesReset"></button>
153 </div>
154 <div id="themes-gallery-div">
155 <a id="themes-gallery" i18n-content="themesGallery"
156 i18n-values="href:themesGalleryURL" target="_blank"></a>
157 </div>
158 </div>
159 </section>
160 </if>
161 </div>
162 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options2/personal_options.css ('k') | chrome/browser/resources/options2/personal_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698