| Index: chrome/test/data/webui/settings/easy_unlock_browsertest_chromeos.js
|
| diff --git a/chrome/test/data/webui/settings/easy_unlock_browsertest_chromeos.js b/chrome/test/data/webui/settings/easy_unlock_browsertest_chromeos.js
|
| index b95b73dc2ffa8ceac0999921ffcc08b6dfada64f..dc0f9c06bf98046cff7f3040d20dcef2c12a8342 100644
|
| --- a/chrome/test/data/webui/settings/easy_unlock_browsertest_chromeos.js
|
| +++ b/chrome/test/data/webui/settings/easy_unlock_browsertest_chromeos.js
|
| @@ -18,7 +18,7 @@ SettingsEasyUnlockBrowserTest.prototype = {
|
|
|
| /** @override */
|
| extraLibraries: PolymerTest.getLibraries(ROOT_PATH).concat([
|
| - 'test_browser_proxy.js',
|
| + '../test_browser_proxy.js',
|
| ]),
|
| };
|
|
|
| @@ -36,10 +36,10 @@ TEST_F('SettingsEasyUnlockBrowserTest', 'DISABLED_EasyUnlock', function() {
|
| *
|
| * @constructor
|
| * @implements {settings.EasyUnlockBrowserProxy}
|
| - * @extends {settings.TestBrowserProxy}
|
| + * @extends {TestBrowserProxy}
|
| */
|
| var TestEasyUnlockBrowserProxy = function() {
|
| - settings.TestBrowserProxy.call(this, [
|
| + TestBrowserProxy.call(this, [
|
| 'getEnabledStatus',
|
| 'startTurnOnFlow',
|
| 'getTurnOffFlowStatus',
|
| @@ -52,7 +52,7 @@ TEST_F('SettingsEasyUnlockBrowserTest', 'DISABLED_EasyUnlock', function() {
|
| };
|
|
|
| TestEasyUnlockBrowserProxy.prototype = {
|
| - __proto__: settings.TestBrowserProxy.prototype,
|
| + __proto__: TestBrowserProxy.prototype,
|
|
|
| /**
|
| * @param {boolean} easyUnlockEnabled
|
|
|