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

Side by Side Diff: chrome/browser/resources/options/password_manager.html

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id="password-manager" class="page" hidden>
2 <h1 i18n-content="passwordsPage"></h1>
3 <div id="password-list-headers">
4 <div id="passwords-title">
5 <h3 i18n-content="savedPasswordsTitle"></h3>
6 </div>
7 <div id="password-search-column">
8 <input id="password-search-box" type="search"
9 i18n-values="placeholder:passwordSearchPlaceholder" incremental
10 results="10" autosave="org.chromium.options.passwords.search">
11 </div>
12 </div>
13 <list id="saved-passwords-list" class="settings-list"></list>
14 <div id="saved-passwords-list-empty-placeholder"
15 class="settings-list-empty" hidden>
16 <span i18n-content="passwordsNoPasswordsDescription"></span>
17 <a target="_blank" i18n-content="learnMore"
18 i18n-values="href:passwordManagerLearnMoreURL"></a>
19 </div>
20 <h3 i18n-content="passwordExceptionsTitle"></h3>
21 <list id="password-exceptions-list" class="settings-list"></list>
22 <div id="password-exceptions-list-empty-placeholder" hidden
23 class="settings-list-empty">
24 <span i18n-content="passwordsNoExceptionsDescription"></span>
25 <a target="_blank" i18n-content="learnMore"
26 i18n-values="href:passwordManagerLearnMoreURL"></a>
27 </div>
28 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698