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

Unified Diff: chrome/browser/resources/options/manage_profile_overlay.html

Issue 7400032: Multi-profile WebUI settings (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: renamed profiles_manage -> manage_profile 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698