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

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

Issue 7400032: Multi-profile WebUI settings (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Notify when deleting profile from cache Created 9 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 | Annotate | Revision Log
OLDNEW
1 <div id="personal-page" class="page" hidden> 1 <div id="personal-page" class="page" hidden>
2 <h1 i18n-content="personalPage"></h1> 2 <h1 i18n-content="personalPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <if expr="pp_ifdef('chromeos')"> 4 <if expr="pp_ifdef('chromeos')">
5 <section> 5 <section>
6 <h3 i18n-content="account"></h3> 6 <h3 i18n-content="account"></h3>
7 <div> 7 <div>
8 <img id='account-picture' 8 <img id='account-picture'
9 src='chrome://theme/IDR_LOGIN_DEFAULT_USER'> 9 src='chrome://theme/IDR_LOGIN_DEFAULT_USER'>
10 <label> 10 <label>
(...skipping 16 matching lines...) Expand all
27 </div> 27 </div>
28 <div id="sync-status" hidden> 28 <div id="sync-status" hidden>
29 <span id="sync-status-text"></span> 29 <span id="sync-status-text"></span>
30 <button id="sync-action-link" class="link-button"></button> 30 <button id="sync-action-link" class="link-button"></button>
31 </div> 31 </div>
32 <div id="sync-buttons"> 32 <div id="sync-buttons">
33 <button id="start-stop-sync" hidden></button> 33 <button id="start-stop-sync" hidden></button>
34 <button id="customize-sync" i18n-content="customizeSync" hidden> 34 <button id="customize-sync" i18n-content="customizeSync" hidden>
35 </button> 35 </button>
36 </div> 36 </div>
37 <div id="profiles-create" hidden> 37 </div>
38 <span i18n-content="createNewProfile"></span> 38 </section>
39 <div id="profiles-create-button"> 39 <section id="profiles-section">
40 <button id="new-profile" i18n-content="createProfileButton"></button > 40 <h3 i18n-content="profiles"></h3>
James Hawkins 2011/07/19 20:22:09 Remove blank line.
41 </div> 41 <div>
42 </div> 42 <list id="profiles-list" class="settings-list" hidden></list>
43 <button id="profiles-create" i18n-content="profilesCreate"></button>
44 <button id="profiles-manage" i18n-content="profilesManage" disabled>
45 </button>
46 <button id="profiles-delete" i18n-content="profilesDelete" disabled>
47 </button>
43 </div> 48 </div>
44 </section> 49 </section>
45 <section> 50 <section>
46 <h3 i18n-content="passwords"></h3> 51 <h3 i18n-content="passwords"></h3>
47 <div> 52 <div>
48 <div class="radio"> 53 <div class="radio">
49 <label> 54 <label>
50 <input id="passwords-offersave" type="radio" name="passwords_radio" 55 <input id="passwords-offersave" type="radio" name="passwords_radio"
51 value="true" pref="profile.password_manager_enabled" 56 value="true" pref="profile.password_manager_enabled"
52 metric="Options_PasswordManager"> 57 metric="Options_PasswordManager">
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 </div> 138 </div>
134 <div id="themes-gallery-div"> 139 <div id="themes-gallery-div">
135 <a id="themes-gallery" i18n-content="themesGallery" 140 <a id="themes-gallery" i18n-content="themesGallery"
136 i18n-values="href:themesGalleryURL" target="_blank"></a> 141 i18n-values="href:themesGalleryURL" target="_blank"></a>
137 </div> 142 </div>
138 </div> 143 </div>
139 </section> 144 </section>
140 </if> 145 </if>
141 </div> 146 </div>
142 </div> 147 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698