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

Side by Side Diff: chrome/browser/resources/options/profiles_manage_overlay.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
(Empty)
1 <div id="profiles-manage-overlay" class="page" hidden>
2 <!-- dialog for managing profiles -->
James Hawkins 2011/07/19 20:22:09 Dialog...profiles.
3 <div id="profiles-manage-overlay-manage" hidden>
4 <h1 i18n-content="profilesManageTitle"></h1>
5 <div id="profiles-manage-content" class="content-area">
6 <div id="profiles-manage-name-div">
7 <span id="profiles-manage-name-label"
8 i18n-content="profilesManageNameLabel"></span>
9 <input id="profiles-manage-name" type="text"></input>
James Hawkins 2011/07/19 20:22:09 input element does not have closing tag.
10 </div>
11 <div id="profiles-manage-duplicate-name-error"
12 class="hiding" i18n-content="profilesManageDuplicateNameError">
James Hawkins 2011/07/19 20:22:09 What is the 'hiding' class? I can't find it anywhe
13 </div>
14 <div id="profiles-manage-icon-label"
15 i18n-content="profilesManageIconLabel"></div>
16 <list id="profiles-manage-icon-list"></list>
17 </div>
18 <div class="action-area">
19 <div class="button-strip">
20 <button id="profiles-manage-ok"
21 i18n-content="profilesManageOK"></button>
James Hawkins 2011/07/19 20:22:09 Use the options-global OK and cancel strings.
22 <button id="profiles-manage-cancel"
23 i18n-content="profilesManageCancel"></button>
24 </div>
25 </div>
26 </div>
27 <!-- dialog for deleting profiles -->
28 <div id="profiles-manage-overlay-delete" hidden>
29 <h1 i18n-content="profilesDeleteTitle"></h1>
30 <div class="content-area">
31 <div id="profiles-delete-message"></div>
32 </div>
33 <div class="action-area">
34 <div class="button-strip">
35 <button id="profiles-delete-ok"
36 i18n-content="profilesDeleteOK"></button>
37 <button id="profiles-delete-cancel"
38 i18n-content="profilesDeleteCancel"></button>
39 </div>
40 </div>
41 </div>
42 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698