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

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js

Issue 2237533002: Add checkbox to allow auto signing in with a saved password. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix closure Created 4 years, 4 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/settings/passwords_and_forms_page/passwords_section.js
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js
index ebb4539477d5e44a312c3fb60481224310ed277b..d41ad80a2a8a130bac18a142bdc138460acf1998 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js
@@ -20,7 +20,17 @@ var ExceptionPairEntryEvent;
Polymer({
is: 'passwords-section',
+ behaviors: [
+ PrefsBehavior,
michaelpg 2016/08/12 21:51:28 is this necessary?
hcarmona 2016/08/16 22:33:39 Nope. Removed.
+ ],
+
properties: {
+ /** Preferences state. */
+ prefs: {
+ type: Object,
+ notify: true,
+ },
+
/**
* An array of passwords to display.
* @type {!Array<!chrome.passwordsPrivate.PasswordUiEntry>}

Powered by Google App Engine
This is Rietveld 408576698