Commit 01af0d18 authored by mkwst's avatar mkwst Committed by Commit bot

Fixing typos that snuck in with https://crrev.com/960493004.

These broke Closure at http://build.chromium.org/p/chromium.fyi/builders/Closure%20Compilation%20Linux/builds/18644

BUG=461800
TBR=vasilii@chromium.org

Review URL: https://codereview.chromium.org/1020863011

Cr-Commit-Position: refs/heads/master@{#322158}
parent ced2f174
...@@ -176,7 +176,7 @@ cr.define('options.passwordManager', function() { ...@@ -176,7 +176,7 @@ cr.define('options.passwordManager', function() {
* @private * @private
*/ */
getOriginalIndex_: function() { getOriginalIndex_: function() {
var index = this.dataItem[INDEX_DATA_INDEX]; var index = this.dataItem[ORIGINAL_DATA_INDEX];
return index ? index : this.dataModel.indexOf(this.dataItem); return index ? index : this.dataModel.indexOf(this.dataItem);
}, },
...@@ -235,7 +235,7 @@ cr.define('options.passwordManager', function() { ...@@ -235,7 +235,7 @@ cr.define('options.passwordManager', function() {
return this.dataItem[FEDERATION_DATA_INDEX]; return this.dataItem[FEDERATION_DATA_INDEX];
}, },
set federation(federation) { set federation(federation) {
this.dataItem[FEDERATION_DATA_INDEX] = password; this.dataItem[FEDERATION_DATA_INDEX] = federation;
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment