| Index: chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js
|
| diff --git a/chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js b/chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js
|
| index 8a42a3a90906574c00e501021946027a65aabfdb..0c3dee93f25a60b1c45ad954419f49553e87d7b2 100644
|
| --- a/chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js
|
| +++ b/chrome/test/data/webui/settings/fingerprint_browsertest_chromeos.js
|
| @@ -5,10 +5,10 @@
|
| /**
|
| * @constructor
|
| * @implements {settings.FingerprintBrowserProxy}
|
| - * @extends {settings.TestBrowserProxy}
|
| + * @extends {TestBrowserProxy}
|
| */
|
| var TestFingerprintBrowserProxy = function() {
|
| - settings.TestBrowserProxy.call(this, [
|
| + TestBrowserProxy.call(this, [
|
| 'getFingerprintsList',
|
| 'getNumFingerprints',
|
| 'startEnroll',
|
| @@ -25,7 +25,7 @@ var TestFingerprintBrowserProxy = function() {
|
| };
|
|
|
| TestFingerprintBrowserProxy.prototype = {
|
| - __proto__: settings.TestBrowserProxy.prototype,
|
| + __proto__: TestBrowserProxy.prototype,
|
|
|
| /** @ param {!Array<string>} fingerprints */
|
| setFingerprints: function(fingerprints) {
|
|
|