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

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html

Issue 2777063005: MD Settings: Show password tooltip for full URL. (Closed)
Patch Set: Use title Created 3 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html"> 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html">
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 2 <link rel="import" href="chrome://resources/cr_elements/icons.html">
3 <link rel="import" href="chrome://resources/html/action_link.html"> 3 <link rel="import" href="chrome://resources/html/action_link.html">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
8 <link rel="import" href="../controls/settings_toggle_button.html"> 8 <link rel="import" href="../controls/settings_toggle_button.html">
9 <link rel="import" href="../controls/extension_controlled_indicator.html"> 9 <link rel="import" href="../controls/extension_controlled_indicator.html">
10 <link rel="import" href="../controls/settings_toggle_button.html"> 10 <link rel="import" href="../controls/settings_toggle_button.html">
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 <div class="password-column"> 100 <div class="password-column">
101 $i18n{editPasswordPasswordLabel} 101 $i18n{editPasswordPasswordLabel}
102 </div> 102 </div>
103 </div> 103 </div>
104 <iron-list id="passwordList" 104 <iron-list id="passwordList"
105 items="[[getFilteredPasswords_(savedPasswords, filter)]]" 105 items="[[getFilteredPasswords_(savedPasswords, filter)]]"
106 class="vertical-list list-with-header" 106 class="vertical-list list-with-header"
107 scroll-target="[[subpageScrollTarget]]"> 107 scroll-target="[[subpageScrollTarget]]">
108 <template> 108 <template>
109 <div class="list-item"> 109 <div class="list-item">
110 <div class="website-column no-min-width"> 110 <div class="website-column no-min-width" title="[[item.linkUrl]]">
111 <a id="originUrl" target="_blank" class="selectable no-min-width" 111 <a id="originUrl" target="_blank" class="selectable no-min-width"
112 href="[[item.linkUrl]]"> 112 href="[[item.linkUrl]]">
113 <span class="text-elide"> 113 <span class="text-elide">
114 [[item.loginPair.originUrl]] 114 [[item.loginPair.originUrl]]
115 </span> 115 </span>
116 </a> 116 </a>
117 </div> 117 </div>
118 <div class="username-column selectable text-elide" 118 <div class="username-column selectable text-elide"
119 id="username">[[item.loginPair.username]]</div> 119 id="username">[[item.loginPair.username]]</div>
120 <div class="password-column"> 120 <div class="password-column">
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 </div> 165 </div>
166 </template> 166 </template>
167 <div id="noExceptionsLabel" class="list-item" 167 <div id="noExceptionsLabel" class="list-item"
168 hidden$="[[hasSome_(passwordExceptions)]]"> 168 hidden$="[[hasSome_(passwordExceptions)]]">
169 $i18n{noExceptionsFound} 169 $i18n{noExceptionsFound}
170 </div> 170 </div>
171 </div> 171 </div>
172 </template> 172 </template>
173 <script src="passwords_section.js"></script> 173 <script src="passwords_section.js"></script>
174 </dom-module> 174 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698