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

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: profiles_icon_list.js -> profiles_icon_grid.js 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..ba2fc927f2573604e4bef8db1b600c7d0017fb94
--- /dev/null
+++ b/chrome/browser/resources/options/manage_profile_overlay.html
@@ -0,0 +1,39 @@
+<div id="manage-profile-overlay" class="page" hidden>
+ <!-- Dialog for managing profiles. -->
+ <div id="manage-profile-overlay-manage" hidden>
+ <h1 i18n-content="manageProfilesTitle"></h1>
+ <div id="manage-profile-content" class="content-area">
+ <div id="manage-profile-name-div">
+ <span id="manage-profile-name-label"
+ i18n-content="manageProfilesNameLabel"></span>
+ <input id="manage-profile-name" type="text">
+ </div>
+ <div id="manage-profile-duplicate-name-error"
+ class="hiding" i18n-content="manageProfilesDuplicateNameError">
+ </div>
+ <div id="manage-profile-icon-label"
+ i18n-content="manageProfilesIconLabel"></div>
+ <grid id="manage-profile-icon-grid"></grid>
+ </div>
+ <div class="action-area">
+ <div class="button-strip">
+ <button id="manage-profile-ok" i18n-content="ok"></button>
+ <button id="manage-profile-cancel" i18n-content="cancel"></button>
+ </div>
+ </div>
+ </div>
+ <!-- Dialog for deleting profiles. -->
+ <div id="manage-profile-overlay-delete" hidden>
+ <h1 i18n-content="deleteProfileTitle"></h1>
+ <div class="content-area">
+ <div id="delete-profile-message"></div>
+ </div>
+ <div class="action-area">
+ <div class="button-strip">
+ <button id="delete-profile-ok"
+ i18n-content="deleteProfileOK"></button>
+ <button id="delete-profile-cancel" i18n-content="cancel"></button>
+ </div>
+ </div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698