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

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

Issue 5935003: DOMUI: Implement new-style password manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Selection transitions. Created 10 years 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/password_manager.html
diff --git a/chrome/browser/resources/options/password_manager.html b/chrome/browser/resources/options/password_manager.html
index 5d80093d56f3f0ec7047d1b260fe74bfd311ec13..17e4f1091b7c88df10674beda9d7b08825e259e0 100644
--- a/chrome/browser/resources/options/password_manager.html
+++ b/chrome/browser/resources/options/password_manager.html
@@ -1,37 +1,13 @@
-<div id="passwordManager" class="page hidden">
- <h1 i18n-content="savedPasswordsTitle"></h1>
-
- <!-- Navigation tabs -->
- <div class="subpages-nav-tabs">
- <span id="passwords-nav-tab" class="inactive-tab"
- tab-contents="passwordsTab">
- <span class="inactive-tab-label" i18n-content="passwordsTabTitle"></span>
- <span class="active-tab-label" i18n-content="passwordsTabTitle"></span>
- </span>
- <span id="password-exceptions-nav-tab" class="inactive-tab"
- tab-contents="passwordExceptionsTab">
- <span class="inactive-tab-label"
- i18n-content="passwordExceptionsTabTitle"></span>
- <span class="active-tab-label"
- i18n-content="passwordExceptionsTabTitle"></span>
- </span>
+<div id="password-manager" class="page hidden">
+ <h1 i18n-content="passwordsTitle"></h1>
+ <div id="saved-passwords">
+ <div class="passwords-list-title" i18n-content="savedPasswordsTitle">
+ </div>
+ <list id="saved-passwords-list" class="passwords-list"></list>
</div>
-
- <!-- Passwords tab contents -->
- <div id="passwordsTab" class="subpages-tab-contents">
- <section>
- <div id="passwordsArea">
- <list id="savedPasswordsList"></list>
- </div>
- </section>
- </div>
-
- <!-- Exceptions tab contents -->
- <div id="passwordExceptionsTab" class="subpages-tab-contents">
- <section>
- <div id="passwordExceptionsArea">
- <list id="passwordExceptionsList"></list>
- </div>
- </section>
+ <div id="password-exceptions">
+ <div class="passwords-list-title" i18n-content="passwordExceptionsTitle">
+ </div>
+ <list id="password-exceptions-list" class="passwords-list"></list>
</div>
</div>
« no previous file with comments | « chrome/browser/resources/options/password_manager.css ('k') | chrome/browser/resources/options/password_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698