Index: chrome/browser/resources/options/manage_profile_overlay.html |
diff --git a/chrome/browser/resources/options/manage_profile_overlay.html b/chrome/browser/resources/options/manage_profile_overlay.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b9e03b7c9436bfd5d8f024f5002200c12841b216 |
--- /dev/null |
+++ b/chrome/browser/resources/options/manage_profile_overlay.html |
@@ -0,0 +1,39 @@ |
+<div id="profiles-manage-overlay" class="page" hidden> |
James Hawkins
2011/07/20 01:24:22
Change the ID and similarly-named IDs.
binji
2011/07/20 01:56:17
Done.
|
+ <!-- Dialog for managing profiles. --> |
+ <div id="profiles-manage-overlay-manage" hidden> |
+ <h1 i18n-content="profilesManageTitle"></h1> |
+ <div id="profiles-manage-content" class="content-area"> |
+ <div id="profiles-manage-name-div"> |
+ <span id="profiles-manage-name-label" |
+ i18n-content="profilesManageNameLabel"></span> |
+ <input id="profiles-manage-name" type="text"> |
+ </div> |
+ <div id="profiles-manage-duplicate-name-error" |
+ class="hiding" i18n-content="profilesManageDuplicateNameError"> |
+ </div> |
+ <div id="profiles-manage-icon-label" |
+ i18n-content="profilesManageIconLabel"></div> |
+ <list id="profiles-manage-icon-list"></list> |
+ </div> |
+ <div class="action-area"> |
+ <div class="button-strip"> |
+ <button id="profiles-manage-ok" i18n-content="ok"></button> |
+ <button id="profiles-manage-cancel" i18n-content="cancel"></button> |
+ </div> |
+ </div> |
+ </div> |
+ <!-- Dialog for deleting profiles. --> |
+ <div id="profiles-manage-overlay-delete" hidden> |
+ <h1 i18n-content="profilesDeleteTitle"></h1> |
+ <div class="content-area"> |
+ <div id="profiles-delete-message"></div> |
+ </div> |
+ <div class="action-area"> |
+ <div class="button-strip"> |
+ <button id="profiles-delete-ok" |
+ i18n-content="profilesDeleteOK"></button> |
+ <button id="profiles-delete-cancel" i18n-content="cancel"></button> |
+ </div> |
+ </div> |
+ </div> |
+</div> |