| Index: chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| diff --git a/chrome/test/data/webui/settings/cr_settings_browsertest.js b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| index ffe41d4eb29ffe17dc10e9cf2260ffeb87778e85..60c886821c80fff82180c15aefc5d40386d52cd3 100644
|
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| @@ -1081,3 +1081,27 @@ TEST_F('CrSettingsDateTimePageTest', 'DateTimePageTest', function() {
|
| });
|
|
|
| GEN('#endif');
|
| +
|
| +/**
|
| + * @constructor
|
| + * @extends {CrSettingsBrowserTest}
|
| + */
|
| +function CrSettingsExtensionControlledIndicatorTest() {}
|
| +
|
| +CrSettingsExtensionControlledIndicatorTest.prototype = {
|
| + __proto__: CrSettingsBrowserTest.prototype,
|
| +
|
| + /** @override */
|
| + browsePreload:
|
| + 'chrome://md-settings/controls/extension_controlled_indicator.html',
|
| +
|
| + extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
|
| + 'test_browser_proxy.js',
|
| + 'test_extension_control_browser_proxy.js',
|
| + 'extension_controlled_indicator_tests.js',
|
| + ]),
|
| +};
|
| +
|
| +TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() {
|
| + mocha.run();
|
| +});
|
|
|