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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/profiles_manage_overlay.html
diff --git a/chrome/browser/resources/options/profiles_manage_overlay.html b/chrome/browser/resources/options/profiles_manage_overlay.html
new file mode 100644
index 0000000000000000000000000000000000000000..794388abcf5301e07353f2ebc8351595477593ac
--- /dev/null
+++ b/chrome/browser/resources/options/profiles_manage_overlay.html
@@ -0,0 +1,42 @@
+<div id="profiles-manage-overlay" class="page" hidden>
+ <!-- dialog for managing profiles -->
James Hawkins 2011/07/19 20:22:09 Dialog...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"></input>
James Hawkins 2011/07/19 20:22:09 input element does not have closing tag.
+ </div>
+ <div id="profiles-manage-duplicate-name-error"
+ class="hiding" i18n-content="profilesManageDuplicateNameError">
James Hawkins 2011/07/19 20:22:09 What is the 'hiding' class? I can't find it anywhe
+ </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="profilesManageOK"></button>
James Hawkins 2011/07/19 20:22:09 Use the options-global OK and cancel strings.
+ <button id="profiles-manage-cancel"
+ i18n-content="profilesManageCancel"></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="profilesDeleteCancel"></button>
+ </div>
+ </div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698