mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 450396: password engine does not define a tracker
This commit is contained in:
parent
1237305322
commit
72f3cc9e31
@ -70,6 +70,13 @@ PasswordEngine.prototype = {
|
||||
if (!this.__core)
|
||||
this.__core = new PasswordSyncCore(this._store);
|
||||
return this.__core;
|
||||
},
|
||||
|
||||
__tracker: null,
|
||||
get _tracker() {
|
||||
if (!this.__tracker)
|
||||
this.__tracker = new PasswordTracker();
|
||||
return this.__tracker;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user