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

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

Issue 10809005: Options: Rename chrome/browser/resources/options2 -> chrome/browser/resources/options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 8 years, 4 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="manage-profile-overlay" class="page" hidden>
2 <div class="close-button"></div>
3 <!-- Dialog for managing profiles. -->
4 <div id="manage-profile-overlay-manage" hidden>
5 <h1 i18n-content="manageProfile"></h1>
6 <div id="manage-profile-content" class="content-area">
7 <div id="manage-profile-icon-label"
8 i18n-content="manageProfilesIconLabel">
9 </div>
10 <grid id="manage-profile-icon-grid"></grid>
11 <div id="manage-profile-name-label-container">
12 <span id="manage-profile-name-label"
13 i18n-content="manageProfilesNameLabel"></span>
14 </div>
15 <div id="manage-profile-name-input-container">
16 <input id="manage-profile-name" type="text" required>
17 </div>
18 <div id="manage-profile-error-bubble" hidden>
19 </div>
20 </div>
21 <div class="action-area">
22 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for
23 shortcut creation in M23
24 <div class="action-area-checkbox-container">
25 <div class="checkbox">
26 <label>
27 <input id="manage-shortcut" type="checkbox">
28 <span for="manage-shortcut"
29 i18n-content="createProfileShortcut">
30 </span>
31 </label>
32 </div>
33 </div>
34 -->
35 <div class="button-strip">
36 <button id="manage-profile-cancel" i18n-content="cancel"></button>
37 <button id="manage-profile-ok" i18n-content="ok"></button>
38 </div>
39 </div>
40 </div>
41 <!-- Dialog for deleting profiles. -->
42 <div id="manage-profile-overlay-delete" hidden>
43 <h1 i18n-content="deleteProfileTitle"></h1>
44 <div class="content-area">
45 <div id="delete-profile-message"></div>
46 </div>
47 <div class="action-area">
48 <div class="button-strip">
49 <button id="delete-profile-cancel" i18n-content="cancel"></button>
50 <button id="delete-profile-ok"
51 i18n-content="deleteProfileOK"></button>
52 </div>
53 </div>
54 </div>
55 <!-- Dialog for creating profiles. -->
56 <div id="manage-profile-overlay-create" hidden>
57 <h1 i18n-content="createProfileTitle"></h1>
58 <div id="create-profile-content" class="content-area">
59 <div id="create-profile-instructions"></div>
60 <grid id="create-profile-icon-grid"></grid>
61 <div id="create-profile-name-label-container">
62 <span id="create-profile-name-label"
63 i18n-content="manageProfilesNameLabel">
64 </span>
65 </div>
66 <div id="create-profile-name-input-container">
67 <input id="create-profile-name" type="text" required>
68 </div>
69 <div id="create-profile-error-bubble" hidden></div>
70 </div>
71 <div class="action-area">
72 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for
73 shortcut creation in M23
74 <div class="action-area-checkbox-container">
75 <div class="checkbox">
76 <label>
77 <input id="create-shortcut" type="checkbox">
78 <span for="create-shortcut"
79 i18n-content="createProfileShortcut">
80 </span>
81 </label>
82 </div>
83 </div>
84 -->
85 <div class="button-strip">
86 <button id="create-profile-cancel" i18n-content="cancel"></button>
87 <button id="create-profile-ok" i18n-content="createProfileConfirm">
88 </button>
89 </div>
90 </div>
91 </div>
92 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698